LLVM has it's own hand rolled alternative to RTTI that is a speed improvement over built-in RTTI and allows dynamic casting to classes with no vtable (dyn_cast
). However, it can still be used in exactly the way that dynamic_cast<>
is used though it does allow it to be used with more classes.
dyn_cast<>
template documentation
LLVM is a reputable C++ project so this seems to fly in the face of the common saying that too many dynamic casts is a sign of bad design, also known as a code smell. Surely a better performing dynamic cast does nothing to improve its use in design than a standard dynamic_cast
. So who is right here? Are there cases where large-scale use of dynamic casting is a good design choice in C++ code? Google turns up 690 occurrences of this kind of dynamic casting in the LLVM trunk source code.
Uses of dyn_cast<>
in LLVM trunk
While performance hits are a reason to avoid dynamic_cast<>
for large class hierarchies, it's not the only reason you might want to avoid them. Better performing or not, one should not be more encouraged to use dyn_cast<>
because of this claim.
On the other hand, there's absolutely nothing wrong with using dynamic_cast<>
when it's the best tool for the job. If its use is justified, and the cleanest way to solve a problem, then it's always right, regardless of the "common saying".
I would certainly not steer clear of popular projects simply because they use dynamic_cast<>
s, goto
s or any other idiom that's fallen out of favour.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With