类的成员函数this指针
Posted The August
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了类的成员函数this指针相关的知识,希望对你有一定的参考价值。
this指针
C++编译器给每个“非静态的成员函数“增加了一个隐藏的指针参数,让该指针指向当前对象(函数运行时调用该函数的对象),在函数体中所有成员变量的操作,都是通过该指针去访问。只不过所有的操作对用户是透明的,即用户不需要来传递,编译器自动完成。
代码1.
class Date
{
public:
void Display()
{
cout << _year << "-" << _month << "-" << _day << endl;
}
void Init(int year, int month, int day)
{
_year = year;
_month = month;
_day = day;
}
private:
int _year; // 年
int _month; // 月
int _day; // 日
};
int main()
{
Date d1, d2;
d1.Init(2018, 5, 1);
d2.Init(2010, 7, 1);
d1.Display();
d2.Display();
return 0;
}
代码一也可以写成
class Date
{
public:
void Display()
{
cout << this->_year << "-" << this->_month << "-" << this->_day << endl;
}
//this只能在“成员函数”的内部使用
//成员函数里面,不加的话,默认会在成员前面加this->
//也可以显示的在成员前面加this->
void Init(int year, int month, int day)
{
this->_year = year;
this->_month = month;
this->_day = day;
}
private:
int _year; // 年
int _month; // 月
int _day; // 日
};
int main()
{
Date d1, d2;
d1.Init(2018, 5, 1);
d2.Init(2010, 7, 1);
d1.Display();
d2.Display();
return 0;
}
this指针的特性
- this指针的类型:类类型* const
- 只能在“成员函数”的内部使用
- this指针本质上其实是一个成员函数的形参,是对象调用成员函数时,将对象地址作为实参传递给this形参。所以对象中不存储this指针。
- this指针是成员函数第一个隐含的指针形参,一般情况由编译器通过ecx寄存器自动传递,不需要用户传递
对象可以调用成员函数,成员函数也可以调用成员函数,因为有this指针
注:this指针是形参,形参和函数中的局部变量是存在函数栈帧里面的,因此this指针是存在栈的
this指针的使用
以上是关于类的成员函数this指针的主要内容,如果未能解决你的问题,请参考以下文章