空指针访问成员函数

C++中空指针也是可以调用成员函数的,但是也要注意有没有用到this指针。

如果用到this指针,需要加以判断保证diam的健壮性。

#include <iostream>
using namespace std;
//空指针调用成员函数
class Person
{
    void showClassName()
    {
        cout << "this is Person class" << endl;
    }
    int m_Age;

    void showPersonAge()
    {
        //保持原因是因为传入的指针是NULL
        if (this == NULL)
        {
            return;
        }
        cout << "age=" << this->m_Age << endl;
    }
};

void test01()
{
    Person* p = NULL;
    //p->showClassName();
    p->showPersonAge();
}
int main()
{
    test01();
    system("pause");
}

Guess you like

Origin blog.csdn.net/weixin_42291376/article/details/121277073