C++强制转换失败时的dynamic_cast行为
如果转换涉及指针,则 dynamic_cast
计算结果为 NULL
,但如果转换涉及引用类型,则抛出 bad_cast
异常。
为什么会有这种行为差异?
谢谢
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
因为不存在 NULL 引用这样的东西:)
Because there is no such thing as NULL reference :)
实际上可能存在空引用(或者更确切地说是对空的引用),但它是未定义的行为(UB)。由于标准没有定义 UB,因此
dynamic_cast
会抛出定义明确的异常。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
dynamic_cast
throws exception which is pretty much well-defined.