1)显式参数命名为otherObject,稍后需要将它转换成另一个叫做other的变量。

2)检测this与otherObject是否引用同一个对象:

if (this == otherObject) return true;
这条语句只是一个优化。实际上,这是一种经常采用的形式。因为计算这个等式要比一个一个地比较类中的域所付出的代价小得多。

3)检测otherObject是否为null,如果为null,返回false。这项检测是很必要的。

if (otherObject == null) return false;

4)比较this与otherObject是否属于同一个类。如果equals的语义在每个子类中有所改变,就使用getClass检测:

if (getClass() != otherObject.getClass()) return false;
如果所有的子类都拥有统一的语义,就使用instanceof检测:
if (!(otherObject instanceof ClassName)) return false;

5)将otherObject转换为相应的类类型变量:

ClassName other = (ClassName) otherObject;

6)现在开始对所有需要比较的域进行比较了。使用==比较基本类型域,使用equals比较对象域。如果所有的域都匹配,就返回true;否则返回false。

return field1 == other.field1 && Objects.equals(field2, other.field2) && ...;
如果在子类中重新定义equals,就要在其中包含调用super.equals(other)。

引用自《Java核心技术:卷 I 基础知识(第10版)》5.2.1 equals方法


注意:如果重新定义equals方法,就必须重新定义hashCode方法

  • 这里可以调用 Objects.hash 提供多个参数来实现:

    1. @Override
    2. public int hashCode()
    3. {
    4. return Objects.hash(field1, field2, ...);
    5. }
  • 如果存在数组类型的域,那么可以使用静态的Arrays.hashCode方法计算一个散列码