C++(空指针访问成员函数)

时间:2020-09-17 20:11:19   收藏:0   阅读:29

空指针访问成员函数

示例:

#include <iostream>
using namespace std;

//空指针访问成员函数
class Person{
public:
      void ShowClassName()
      {
            cout<<"我是Person类!"<<endl;
      }     
      
      void ShowPerson()
      {
            if(this==NULL)
            {
                  return;
            }
            cout<<this->mAge<<endl;
      }
public:
      int mAge;
};

void test01()
{
      Person *p=NULL;
      p->ShowClassName(); //空指针,可以调用成员函数
      p->ShowPerson();    //但是如果成员函数中用到了this指针,就不可以了
}

int main(void)
{
      test01();
      
      system("pause");
      return 0;
}
评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!