class AA
{
public:
void print(){std::cout<<"in class A"<<std::endl;}
};
int _tmain(int argc, _TCHAR* argv[])
{
AA *a= NULL;
a->print();
return 0;
}
上面的代码输出 "in class A" 。由于 a 指向 NULL,当 object 指向 NULL 时如何调用 print 函数。
class AA
{
public:
void print(){std::cout<<"in class A"<<std::endl;}
};
int _tmain(int argc, _TCHAR* argv[])
{
AA *a= NULL;
a->print();
return 0;
}
上面的代码输出 "in class A" 。由于 a 指向 NULL,当 object 指向 NULL 时如何调用 print 函数。