I have four classes:
class A {};
class B : virtual public A {};
class C : virtual public A {};
class D: public B, public C {};
Attempting a static cast from A* to B* I get the below error:
cannot convert from base A to derived type B via virtual base A
In order to understand the cast system, you need to dive into the object model.
The classic representation of a simple hierarchy model is containment: if
Bderives fromAthen theBobject will, in fact, contain anAsubobject alongside its own attributes.With this model downcasting is a simple pointer manipulation by an offset known at compilation time, which depends on the memory layout of
B.This is what static_cast does: a static cast is dubbed static because the computation of what is necessary for the cast is done at compile-time, be it pointer arithmetic or conversions (*).
However, when
virtualinheritance kicks in, things tend to become a bit more difficult. The main issue is that withvirtualinheritance all subclasses share the same instance of the subobject. In order to do that,Bwill have a pointer to anA, instead of anAproper, and theAbase class object will be instantiated outside ofB.Therefore, it’s impossible at compilation time to be able to deduce the necessary pointer arithmetic: it depends on the runtime type of the object.
Whenever there is a runtime type dependency, you need RTTI (RunTime Type Information), and making use of RTTI for casts is the job of dynamic_cast.
In summary:
static_castdynamic_castThe other two are also compile-time casts, but they are so specific that it’s easy to remember what they are for… and they are smelly, so better not use them at all anyway.
(*) As noted by @curiousguy in the comments, this only holds for downcasting. A
static_castallows upcasting regardless of virtual or simple inheritance, though then the cast is also unnecessary.