其他分享
首页 > 其他分享> > 常函数

常函数

作者:互联网

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,指针
来源: https://www.cnblogs.com/duzw/p/16586152.html