异度部落格

学习是一种生活态度。

0%

Java Equals方法完美实现

Equals:

Object 类中的 equals 方法用于检测一个对象是否等于另一个对象。

实现:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
public class MyClass {

private Integer field1;

private String field2;

@Override
public boolean equals(Object otherObject) {

// 判断是否引用同一个对象
if (this == otherObject) {
return true;
}

// 检测otherObject是否为空
if (otherObject == null) {
return false;
}

// 比较this和otherObject是不是属于同一个类
if (!(otherObject instanceof MyClass)) {
return false;
}

// 比较每个域是否相等
MyClass other = (MyClass) otherObject;
return this.field1.equals(other.field1)
&& this.field2.equals(other.field2);
}
}