Tagged Questions

5
votes
8answers
880 views

Is my method for avoiding dynamic_cast<> faster than dynamic_cast<> itself?

I was answering a question a few minutes ago and it raised to me another one: In one of my projects, I do some network message parsing. The messages are in the form of: [1 byte message type][2 bytes ...
3
votes
4answers
127 views

When is static cast safe when you are using multiple inheritance?

I found myself in a situation where i know what type something is. The Type is one of three (or more) levels of inheritance. I call factory which returns B* however T is either the highestlevel of a ...
3
votes
5answers
1k views

Accessing subclass members from a superclass pointer C++

I have an array of custom class Student objects. CourseStudent and ResearchStudent both inherit from Student, and all the instances of Student are one or the other of these. I have a function to go ...
3
votes
4answers
4k views

Static cast vs. dymamic cast for traversing inheritance hierarchies

I saw one book on C++ mentioning that navigating inheritance hierarchies using static cast is more efficient than using dynamic cast. Example: #include <iostream> #include <typeinfo> ...
2
votes
2answers
90 views

Why does dynamic_cast exist? [closed]

Possible Duplicate: Regular cast vs. static_cast vs. dynamic_cast I learned how static_cast works by this question. Why is it important to use static_cast instead of reinterpret_cast here? ...