参考链接:
https://blog.csdn.net/ChaoFeiLi/article/details/103612849
https://blog.csdn.net/chenyt01/article/details/51316022
定义:指向当前对象的this指针
this指针:指向当前对象,保存当前对象的地址
类型:类名 *
类成员函数的形参列表中的第一个参数(隐含的参数)
int Box::volume(){
return this->length * this->width * this->height;
}
C++编译器处理为:
int Box::volume(Box *this){
return this->length * this->width * this->height;
}
先有对象,然后有this指针
编译器的调用过程:box.volume(&box) , this = &box,然后才是成员变量或函数成员
this指针比较特殊的使用方式:
返回当前对象的地址和返回当前的对象
//类声明文件
Box* getAddr();//返回当前对象的地址
Box getSelf();//返回当前对象
//类实现文件
Box* Box::getAddr()//返回当前对象的地址
{
return this;
}
Box Box::getSelf()//返回当前对象
{
return *this;
}
//主函数
class Box * ptr;
class Box box;
ptr = box.getAddr();
cout<<ptr<<" "<<&box<<endl;
box = box.getSelf();
关于this指针的一个精典回答:
当你进入一个房子后,
你可以看见桌子、椅子、地板等,
但是房子你是看不到全貌了。
对于一个类的实例来说,
你可以看到它的成员函数、成员变量,
但是实例本身呢?
this是一个指针,它时时刻刻指向你这个实例本身。
来源:CSDN
作者:ChaoFeiLi
链接:https://blog.csdn.net/ChaoFeiLi/article/details/104399517