Consider that:
class B {
void f() { vf(); };
virtual void vf();
};
class D: public B{
virtual void vf();
};
I thought that in C++ the implementation of B::f()
is something like that:
f(B *this) {
*(this->vptr[index])(this);
}
Is D::vf()
called through the virtual mechanism in the following example?
B *p = new D();
p->f();
Answer is yes for the given example, but not for calls from a constructor of the base class, which executes before the derived class gets constructed.
With a slightly modifed example:
The output is: