Why static_cast cannot downcast from a virtual base ?
struct A {};
struct B : public virtual A {};
struct C : public virtual A {};
struct D : public B, public C {};
int main()
{
D d;
A& a = d;
D* p = static_cast<D*>(&a); //error
}
g++ 4.5 says:
error: cannot convert from base ‘A’ to derived type ‘D’ via virtual base ‘A’
The solution is to use dynamic_cast ? but why. What is the rational ?
-- edit --
Very good answers below. Sadly no answers detail exactly how sub objects and vtables end up to be ordered. The following article gives some good examples for gcc:
http://www.phpcompiler.org/articles/virtualinheritance.html#Downcasting
dynamic_castunlessAcontains at least one virtual member function. – Björn Pollex May 18 '11 at 12:30dynamic_castthe class must be made virtual. – Ugo May 18 '11 at 12:31D *p = static_cast<D *>(static_cast<B *>(&a));– Simon Richter May 18 '11 at 14:06static_castwon't work if A is a virtual base. – Ugo May 18 '11 at 15:33