Re: The merits of dynamic_cast<>()
On Sep 15, 9:55 pm, Joshua Maurice <joshuamaur...@gmail.com> wrote:
On Sep 15, 2:52 am, Leslaw Bieniasz <nbbie...@cyf-kr.edu.pl> wrote:
I am curious what is the current opinion about the merits of
using dynamic_cast<>(). I remember reading somewhere several
years ago that it was considered a bad practice to use the
dynamic casting, and that in cases when such a need arises,
one should think about redesigning the code.
Specifically, it's not only dynamic_cast which is considered
bad practice. Usually, every cast of every kind is assumed bad
until proven good. Good C++ code should contain (near) 0
explicit casts of any kind. Explicit casting has been known to
lead to problem.
Yes and no.
First, any explicit creation of a temporary (i.e. "MyType(
params )") is formally a cast, according to the standard. I
don't think most programmers think of it as one, however (I
certainly don't), and that's probably not what you meant.
Secondly, coercing concrete types into another concrete type is
fully legitimate, if the concrete types represent more or less
the same sort of information: I'd certainly not object to things
like:
std::cout << static_cast< double >( count ) * 100 / max << '%' ;
(Usually, I'll avoid the explicit cast by multiplying by 100.0,
but I wonder if this isn't a bit of obfuscation; it certainly
seems clearer with the explicit conversion.)
Even when talking about dynamic_cast, there are at least two
cases where it would be valid: if the object has transited by
some intermediate code which erases the type (because it handles
many different types), or if the object may (or may not) support
some sort of extended interface.
Casts typically aren't that frequent (with perhaps the exception
of numeric types), but they aren't in themselves necessarily a
sign of poor programming or poor design. It all depends on the
use. (A string of "if (dynamic_cast< A* >( ptr ) ) ... else if
(dynamic_cast< B* >( ptr ) ) ..." is a sign of a problem.)
--
James Kanze