C++空指针访问成员函数
作者:互联网
C++中,空指针也可以访问成员函数,但是要注意有没有用到this指针。
如果用到this指针,需要加以判断保证代码的健壮性。
#include<iostream> using namespace std; class WLM { public: void A() { cout << "666" << endl; } void B() { if(this == NULL) //保证代码的健壮性 { return; } cout << m_a << endl; } int m_a; }; int _tmain(int argc, _TCHAR* argv[]) { WLM * wlm = NULL; //wlm->A(); wlm->B(); system("pause"); return 0; }
标签:函数,用到,C++,访问,成员,指针 来源: https://www.cnblogs.com/ZJY-WLM/p/16532023.html