How can I downcast safely (ie returning null on failure) to the exact type of the underlying object, without incurring the performance penalty of dynamic_cast, and without having to put support code in every class I use?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
| show 2 more comments |
|
The semantics are exactly the same as for other cast operators, ie
Edit: I have tested this on a project I am working on. My results from |
|||||||||||||||||||||
|
dynamic_castnot implement this method? – Konrad Rudolph Jul 15 '12 at 19:13dynamic_castis strictly more powerful. This is essentially a special use case. – Dan Jul 15 '12 at 19:14