this指针
this 是 C++ 中的一个关键字,也是一个 const 指针,不可以更改指向。指向当前对象,通过它可以访问当前对象的所有成员。
- 成员函数最终会被编译成与对象无关的普通函数。除了成员变量,丢失所有信息
- 相同类型的不同对象共享同一份成员函数代码。因此,编译时在成员函数中添加一个隐藏参数,将当前调用对象首地址传入,用来关联成员函数和成员变量,这就是this指针
- C++关键字,const指针,在类的成员函数,构造函数和析构函数中,对所有成员的访问,都是通过this指针
#include<iostream>
#include<string>
using namespace std;
class GirlFriend
{
int m_age;
string m_name;
public:
GirlFriend(int age,string name)
{
m_age = age; //等价 this->m_age =age;
m_name = name; //等价 this->m_name =name;
introduce(); //等价 this->introduce();
cout << this << endl; //打印this的地址
}
void introduce()
{
cout << "My name is:" << m_name << ",My age is:" << m_age << endl;
}
//introduce函数在编译器看来是这个样子
//void introduce(GirlFriend* const this)
//{
// cout << "My name is:" << this->m_name << ",My age is:" << this->m_age << endl;
//}
};
int main()
{
GirlFriend girl(18,"女朋友");
cout << &girl<< endl; //打印girl对象的地址
cin.get();
return 0;
}
//打印结果
My name is:女朋友,My age is:18
00CFF8F4
00CFF8F4
在上述代码运行结果中可以看出this指针指向的就是对象的地址