我有一个带有hashCode()的类M和Eclipse生成的equals()(请参见下文)。
具有相等M的两个列表相等,两个具有相等M的集合不相等。
这是deepEquals()中的错误还是我感到困惑?
import java.util.ArrayList;
import java.util.Arrays;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Set;
class M {
@Override public int hashCode() {
final int prime=31;
int result=1;
result=prime*result+Arrays.hashCode(b);
return result;
}
@Override public boolean equals(Object obj) {
if(this==obj) return true;
if(obj==null) return false;
if(getClass()!=obj.getClass()) return false;
M other=(M)obj;
if(!Arrays.deepEquals(b,other.b)) return false;
return true;
}
int[][] b=new int[3][3];
}
public class SetEquality {
static List<Object> list(Object o) {
ArrayList<Object> l=new ArrayList<>();
l.add(o);
return l;
}
static Set<Object> set(Object o) {
Set<Object> l=new LinkedHashSet<>();
l.add(o);
return l;
}
public static void main(String[] args) {
M f=new M();
M g=new M();
List<Object> listWithF=list(f);
List<Object> listWithG=list(g);
System.out.println("lists: "+listWithF.equals(listWithG));
Set<Object> setWithF=set(f);
Set<Object> setWithG=set(g);
System.out.println("sets: "+setWithF.equals(setWithG));
}
}
答案 0 :(得分:2)
问题是你的对象没有返回相同的哈希码。您需要使用Arrays.deepHashCode()
代替(请参阅http://ideone.com/qPyWLh)。
这似乎是Eclipse中的已知错误:https://bugs.eclipse.org/bugs/show_bug.cgi?id=422717。