为什么 ClassCastException 不显示类名?

发布于 2024-08-13 04:07:57 字数 132 浏览 3 评论 0原文

在 Java 1.4.2 及更早版本中,如果收到 ClassCastException,您可以看到异常堆栈跟踪,但看不到类名。如果你想找出转换失败的对象的类,你必须进行调试。

在后来的Java版本中还是这样吗?如果有,什么时候改变的?

In Java 1.4.2 and earlier versions, if you get a ClassCastException, you can see the exception stack trace but not the class name. If you want to find out the class of the object for which casting failed, you have to debug.

Is it still the same in later Java versions? If so, when did it change?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

诠释孤独 2024-08-20 04:07:57

这种情况在 Java5 中发生了变化,异常消息开始包含正在转换的对象的类的实际名称。从一开始就应该在那里,他们花了很长时间才添加它。

This changed with Java5, when the exception message started including the actual name of the class of the object being cast. Should've been there from the start, it took them ages to add it.

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