四、this指针
●this本质是一个指针常量: Person * const this 因此this在函数内部的指向是不能改变的!
#include <iostream>
using namespace std;
class Num
{
public:
Num():_n1(0),_n2(0)
{
}
//this指针: == 指向当前调用成员函数的对象.
void NumAdd(int _n1)
{
this->_n1 +=_n1;
}
int _n1;
int _n2;
};
int main(int argc, char *argv[])
{
Num n1;
cout<<n1._n1<<endl;
return 0;
}