可以使用NULL类指针来调用类方法。
注–这是未定义的行为,不能保证程序的执行。实际结果取决于所使用的编译器。
演示此过程的程序如下。
#include <iostream> using namespace std; class Example { public : void func() { cout << "通过Null类指针调用该函数。"; } }; int main() { Example *p = NULL; p->func(); return 0; }
输出结果
上面程序的输出如下。
通过Null类指针调用该函数。
现在,让我们了解以上程序。
类Example包含一个成员函数func()
。该函数显示“该函数通过Null类指针调用。” 给出的代码片段如下。
class Example { public : void func() { cout << "通过Null类指针调用该函数。"; } };
在该函数中main()
,将创建类空指针p。然后func()
使用p进行调用。给出的代码片段如下。
int main() { Example *p = NULL; p->func(); return 0; }