我有两个类,A和B,我需要一个B中的覆盖函数从A的构造函数中调用.这是我已经拥有的:
class A {
A(char* str) {
this->foo();
}
virtual void foo(){}
}
class B : public A {
B(char* str) : A(str) {}
void foo(){
//stuff here isn't being called
}
}
如何从A :: A()中获取在B :: foo()中调用的代码?
解决方法:
I need an overwritten function in B to be called from A’s constructor
这种设计在C中是不可能的:B对象的order of construction是首先构造基础A子对象,然后在其上构造B.
结果是,在A构造函数中,你仍在构造一个A对象:此时调用的任何虚函数都是A的函数.只有当A构造完成并且B构造开始时,才会有虚函数B变得有效.
为了实现你想要的,你必须使用两步模式:1)你构造对象,2)你初始化它.