在 Java 中为具有循环引用的对象实现 equals 和 hashCode
我定义了两个类,使得它们都包含对另一个对象的引用。它们看起来与此类似(这是简化的;在我的实际域模型中,类 A 包含一个 B 列表,每个 B 都有一个返回父级 A 的引用):
public class A {
public B b;
public String bKey;
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((b == null) ? 0 : b.hashCode());
result = prime * result + ((bKey == null) ? 0 : bKey.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (!(obj instanceof A))
return false;
A other = (A) obj;
if (b == null) {
if (other.b != null)
return false;
} else if (!b.equals(other.b))
return false;
if (bKey == null) {
if (other.bKey != null)
return false;
} else if (!bKey.equals(other.bKey))
return false;
return true;
}
}
public class B {
public A a;
public String aKey;
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((a == null) ? 0 : a.hashCode());
result = prime * result + ((aKey == null) ? 0 : aKey.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (!(obj instanceof B))
return false;
B other = (B) obj;
if (a == null) {
if (other.a != null)
return false;
} else if (!a.equals(other.a))
return false;
if (aKey == null) {
if (other.aKey != null)
return false;
} else if (!aKey.equals(other.aKey))
return false;
return true;
}
}
和 是由 Eclipse 使用 A 和 B 的两个字段生成的。问题在于,在任一对象上调用 or 方法会导致 ,因为它们都调用另一个对象和方法。例如,以下程序在使用上述对象时将失败:hashCode
equals
equals
hashCode
StackOverflowError
equals
hashCode
StackOverflowError
public static void main(String[] args) {
A a = new A();
B b = new B();
a.b = b;
b.a = a;
A a1 = new A();
B b1 = new B();
a1.b = b1;
b1.a = a1;
System.out.println(a.equals(a1));
}
如果以这种方式使用循环关系定义域模型存在固有的错误,那么请告诉我。据我所知,这是一个相当普遍的情况,对吧?
在这种情况下,定义和的最佳实践是什么?我想将所有字段保留在方法中,以便它是对象上真正深入的相等比较,但我不明白如何解决这个问题。谢谢!hashCode
equals
equals