空指针访问成员函数

空指针访问成员函数

  • C++中空指针也是可以调用成员函数的,但是也要注意有没有用到this指针
  • 如果用到this指针,需要加以判断保证代码的健壮性

代码示例:

#include <iostream>
using namespace std;
class Person
{
public:
       void showClassName()
       {
              cout << "this is Person class" << endl;
       }
       void showPersonAge()
       {
              //报错原因是因为传入的指针为NULL
              if (this == NULL)
              {
                     return;
              }
              cout << "age=" <<this->m_Age<< endl;
       }
       int m_Age;
       
};
void test01()
{
       Person *p = NULL;
       p->showClassName();
       p->showPersonAge();
}
int main()
{
       test01();
       return 0;
}
posted @ 2022-02-13 12:50  黑马金牌编程  阅读(16)  评论(0)    收藏  举报