当我们设计实体类时,有一个问题总是困扰着我们,那就是如果写出一个符合Java语言规范的equals
方法。下面是一些诀窍:
-
显式参数命名为
otherObjcet
,稍后需要将它转换成另一个叫做other
的变量。 -
检测this与otherObject是否引用。
if (this == otherObject) return true;
-
检测
otherObject
是否为null
,如果为null
,返回false
。这项检测很有必要。if (otherObject == null) return false;
-
比较
this
与otherObjcet
是否属于同一个类。如果equals
的语义在每个子类中有所改变,就使用getClass检测。if (getClass() != otherObject.getClass()) return false;
如果所有的子类都拥有统一的语义,就使用instanceof检测。
if (!(otherObject instanceof ClassName)) return false;
-
将
otherObject
转换为相应的类类型变量。ClassName other = (ClassName) otherObject;
-
对所有需要比较的域进行比较。使用
==
比较基本类型域,使用equals
比较对象域。如果所有域都匹配,返回true
;否则返回false
。return field1 == other.field1 && Object.equals(field2, other.field2) && ...;
如果在子类中重新定义
equals
,就要在其中包含调用super.equals(other)
。