Object 的 .equals 和 .hashCode 将如何适用于我的类?
假设我有自己的类,
public class MyObj { /* ... */ }
它有一些属性和方法。它没有实现 equals,也没有实现 hashCode。
一旦我们调用 equals 和 hashCode,默认实现是什么?来自对象类?它们是什么?默认等于如何工作?默认的 hashCode 将如何工作以及将返回什么? == 只会检查它们是否引用同一个对象,所以很简单,但是 equals() 和 hashCode() 方法呢?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
是的,默认实现是 Object 的(一般来说;如果您从重新定义 equals 和/或 hashCode 的类继承,那么您将使用该实现)。
来自文档:
等于
哈希码
Yes, the default implementation is Object's (generally speaking; if you inherit from a class that redefined equals and/or hashCode, then you'll use that implementation instead).
From the documentation:
equals
hashCode
来自
JVM 实现之一中的对象
:在这两种情况下,它只是比较相关对象的内存地址。
From
Object
in one of the JVM implementations:In both cases it's just comparing the memory addresses of the objects in question.
Object 中有
equals()
和hashCode()
的默认实现。如果您不提供自己的实现,那么将使用它们。对于equals()
来说,这意味着==
比较:只有当对象完全相同时,它们才相等。对于hashCode()
,Javadoc 有很好的解释。有关详细信息,请参阅《Effective Java》第 3 章 (pdf),项目8.
There are default implementations of
equals()
andhashCode()
in Object. If you don't provide your own implementation, those will be used. Forequals()
, this means an==
comparison: the objects will only be equal if they are exactly the same object. ForhashCode()
, the Javadoc has a good explanation.For more information, see Effective Java, Chapter 3 (pdf), item 8.
是的,来自
Object
类,因为您的类隐式扩展了 Object。equals
只是返回this == obj
。hashCode
实现是本机的。只是猜测 - 它返回指向对象的指针。Yes, from
Object
class since your class extends Object implicitly.equals
simply returnsthis == obj
.hashCode
implementation is native. Just a guess - it returns the pointer to the object.如果您不提供自己的实现,则将使用从 Object 派生的实现。没关系,除非您打算将类实例放入 HashSet(任何实际使用 hashCode() 的集合)中,或者需要检查对象的相等性(即 HashSet 的 contains() 方法)。否则,如果这就是您的要求,它将无法正常工作。
由于 HashCodeBuilder 和 Apache Commons Lang 的 ">EqualsBuilder。
If you do not provide your own implementation, one derived from Object would be used. It is OK, unless you plan to put your class instances into i.e. HashSet (any collection that actually use hashCode() ), or something that need to check object's equality (i.e. HashSet's contains() method). Otherwise it will work incorrectly, if that's what you are asking for.
It is quite easy to provide your own implementation of these methods thanks to HashCodeBuilder and EqualsBuilder from Apache Commons Lang.
IBM 的 developerworks 说:
然而,为了确保特定供应商的 Java 版本的确切实现细节,最好查看源代码(如果可用)
IBM's developerworks says:
However, to be sure of the exact implementation details for a particular vendor's Java version it's probably best to look as the source (if it's available)