C++强制转换失败时的dynamic_cast行为

发布于 2024-12-22 05:40:14 字数 141 浏览 0 评论 0原文

如果转换涉及指针,则 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

手心的海 2024-12-29 05:40:14

因为不存在 NULL 引用这样的东西:)

Because there is no such thing as NULL reference :)

懒猫 2024-12-29 05:40:14

实际上可能存在空引用(或者更确切地说是对空的引用),但它是未定义的行为(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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文