1.显式参数命名为otherObject,稍后需要将它转换成另外一个叫做other的变量。
2.检测this与otherObject是否引用同一个对象:
if(this == otherObject) return true;
3.检测objectObject是否为null,如果为null,返回false。这个检测是必要的
if(otherObject == null) return false;
比较this与otherObject是否属于同一个类。如果equals的语义在每个子类中都有所改变,就使用
getClass检测
if(getClass() != otherObject) return false;
如果所有子类都拥有统一的语义,就使用instanceof检测
if(!(otherObject instanceof ClassName)) return false;
4.将otherObject转化为相应的类类型变量
ClassName other = (ClassName) otherObject;
5.现在开始对所有需要进行比较的域进行比较了。使用==比较基本类型域,使用equals比较对象域。如果所有的
都得到匹配,就返回true,否则返回false.
return field1 == other.field1 && field2.equals(other.field2) && ....
如果在子类中重新定义equals,就要在其中包含调用super.equals(other)
阅读(475) | 评论(0) | 转发(0) |