标签:his this classname clu 代码 lan ios std pre
示例:
#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;
}
标签:his this classname clu 代码 lan ios std pre
原文地址:https://www.cnblogs.com/xuelanga000/p/13642722.html