让我们看看这段代码:
class CBase
{
public:
virtual vfunc() { cout << "CBase::vfunc()" << endl; }
};
class CChild: public CBase
{
public:
vfunc() { cout << "CChild::vfunc()" << endl; }
};
int main()
{
CBase *pBase = new CBase;
((CChild*)pBase)->vfunc(); // !!! important
delete pBase;
return 0;
}
输出是:
CBase::vfunc()
但我想看看:CChild::vfunc()
显式 ((CChild*)pBase) 强制转换为类型“CChild*”。那么为什么要调用派生的 vfunc() 我需要将“重要”字符串替换为: ((CChild*)pBase)->CChild::vfunc();