class Person { public: //this指针的本质 是指针常量 指针的指向是不可以修改的 // const Person * const this; //在成员函数后面加const 修饰的是this指向,让指针的指向的值也不可以修改 void showPerson() const { //m_A = 100; 这句代码实际上是隐式的 this->m_A = 100 // this = NULL; this指针不可以修改指针的指向的 } int m_A; };
标签:const,函数,指向,Person,100,指针 From: https://www.cnblogs.com/duzw/p/16586152.html