It cannot give compile time error because a Base-Derived relationship can exist at runtime depending on the address of the pointers being casted.
static_cast
always succeeds, but will raise undefined-behavior if you don't cast to the right type. dynamic_cast
may fail or not, actually telling you whether you tried to cast to the right type or not.
So in my opinion, static_cast
should be used to downcast only if the design can establish that such a possibility exists. One good example of this is CRTP. So it is logical in some situations but try to avoid it as it is undefined-behavior.
RTTI is not needed for static_cast
which might make it theoretically faster, but I will anytime trade-in a dynamic_cast
against the undefined behavior that static_cast
may cause!
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…