在 Java 中重写 equals 和 hashCode 时应该考虑哪些问题? [英] What issues should be considered when overriding equals and hashCode in Java?

查看:33
本文介绍了在 Java 中重写 equals 和 hashCode 时应该考虑哪些问题?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在覆盖 equalshashCode 时必须考虑哪些问题/陷阱?

What issues / pitfalls must be considered when overriding equals and hashCode?

推荐答案

理论(适用于语言律师和数学爱好者):

equals() (javadoc) 必须定义一个等价关系(它必须是自反对称传递em>).此外,它必须一致(如果对象没有被修改,那么它必须保持返回相同的值).此外,o.equals(null) 必须始终返回 false.

The theory (for the language lawyers and the mathematically inclined):

equals() (javadoc) must define an equivalence relation (it must be reflexive, symmetric, and transitive). In addition, it must be consistent (if the objects are not modified, then it must keep returning the same value). Furthermore, o.equals(null) must always return false.

hashCode() (javadoc) 也必须一致(如果对象没有根据 equals() 进行修改,它必须保持返回相同的值).

hashCode() (javadoc) must also be consistent (if the object is not modified in terms of equals(), it must keep returning the same value).

这两种方法之间的关系是:

a.equals(b) 时,a.hashCode() 必须与 b.hashCode() 相同.

Whenever a.equals(b), then a.hashCode() must be same as b.hashCode().

在实践中:

如果你覆盖了一个,那么你应该覆盖另一个.

In practice:

If you override one, then you should override the other.

使用与计算 equals() 相同的一组字段来计算 hashCode().

Use the same set of fields that you use to compute equals() to compute hashCode().

使用优秀的辅助类EqualsBuilderHashCodeBuilder 来自 Apache Commons Lang 库.一个例子:

Use the excellent helper classes EqualsBuilder and HashCodeBuilder from the Apache Commons Lang library. An example:

public class Person {
    private String name;
    private int age;
    // ...

    @Override
    public int hashCode() {
        return new HashCodeBuilder(17, 31). // two randomly chosen prime numbers
            // if deriving: appendSuper(super.hashCode()).
            append(name).
            append(age).
            toHashCode();
    }

    @Override
    public boolean equals(Object obj) {
       if (!(obj instanceof Person))
            return false;
        if (obj == this)
            return true;

        Person rhs = (Person) obj;
        return new EqualsBuilder().
            // if deriving: appendSuper(super.equals(obj)).
            append(name, rhs.name).
            append(age, rhs.age).
            isEquals();
    }
}

还要记住:

当使用基于散列的集合MapHashSetLinkedHashSet, HashMap, HashtableWeakHashMap,确保您放入集合中的关键对象的 hashCode() 在对象处于集合.确保这一点的防弹方法是使您的密钥不可变,还有其他好处.

Also remember:

When using a hash-based Collection or Map such as HashSet, LinkedHashSet, HashMap, Hashtable, or WeakHashMap, make sure that the hashCode() of the key objects that you put into the collection never changes while the object is in the collection. The bulletproof way to ensure this is to make your keys immutable, which has also other benefits.

这篇关于在 Java 中重写 equals 和 hashCode 时应该考虑哪些问题?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆