c++之构造函数调用虚函数问题
首先我们来看一段代码
#include <iostream>
using namespace std;
class example
{
public:
example()
{
output();
}
virtual void output()
{
cout<<"The construct can call virtual function!"<<endl;
}
};
class exam:public example
{
public:
virtual void output()
{
cout<<"The second one!"<<endl;
}
};
int main()
{
example *newone = new exam;
return 1;
}
这段代码中最后的输出为:The construct can call virtual function!
肯定有人会问,这不是定义了虚函数么,而且子类也对该虚函数进行了重写,为什么没显示其多态性,其实这主要是因为在c++标准中说到,对于在构造函数中调用虚函数其调用的函数未被重写的基类的函数,我觉得估计是因为由于构造函数是在类的初始化过程中调用的 如果这时候能调用派生类的函数,由于此时派生类的构造函数还未初始化,有可能导致在重写的函数里使用的变量未被初始化而出现错误。
但是在java中却没有此类问题,它就会直接调用派生类的重写函数。