litong
litong
~1 min read

Categories

  • Java

Tags

  • Java

当我们设计实体类时,有一个问题总是困扰着我们,那就是如果写出一个符合Java语言规范的equals方法。下面是一些诀窍:

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

  2. 检测this与otherObject是否引用。

    if (this == otherObject) return true;
    
  3. 检测otherObject是否为null,如果为null,返回false。这项检测很有必要。

    if (otherObject == null) return false;
    
  4. 比较thisotherObjcet是否属于同一个类。如果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
      && Object.equals(field2, other.field2)
      && ...;
    

    如果在子类中重新定义equals,就要在其中包含调用super.equals(other)