对象类中的其他方法

发布于 2024-08-23 10:40:18 字数 99 浏览 6 评论 0原文

Object 类有许多方法,例如 equals、hashCode、notify、wait 等。

您认为 Object 类缺少哪些方法?为什么?您希望它有任何其他方法吗?

The Object class has a number of methods such as equals, hashCode, notify, wait etc.

What methods do you think are missing from the Object class and why? Are there any additional methods you wish it had?

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

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

发布评论

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

评论(1

颜漓半夏 2024-08-30 10:40:18

我认为它不应该有任何额外方法......事实上,我认为存在的各种方法一开始就不应该存在

Java 中的一个问题是许多类型(例如 HashMap)总是直接在键上使用哈希码和相等方法 - 如果 Java 具有像 .NET 的 这样的接口,那就更好了>IEqualityComparer 任何想要执行散列/相等比较的东西都可以委托给它。

I don't think it should have any extra methods... in fact, I think various methods that are there shouldn't be there in the first place.

One problem in Java is that a lot of types (such as HashMap) always use the hash code and equality methods on the keys directly - it would be much better if Java had an interface like .NET's IEqualityComparer<T> that anything wanting to perform hashing/equality comparisons could delegate to.

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