dynamic_cast evaluates to NULL if the cast involves pointers, but throws a bad_cast exception if the cast involves reference types.
Why this difference in behavior?
Thanks
|
Why this difference in behavior? Thanks |
|||
|
|
|
Because there is no such thing as NULL reference :) |
|||||||||||||
|
|
Actually there could be null reference (or rather reference to null), but it is undefined behavior (UB). Since the Standard doesn't define UB, so |
|||||||||||
|