我构建了自己的类,它实现了可比较的(可能不相关),当我尝试使用HashSet来存储项目时,HashSet有时声称该项目在HashSet中,即使它不是。我认为这与参考检查有关,但我确认不是。有什么问题?
顶点类equals
和getHashcode
:
public class Vertex implements Comparable<Vertex>{
// some code ...
@Override
public boolean equals(Object obj) {
Vertex other = (Vertex) obj;
return this.getPosition().equals(other.getPosition());
}
@Override
public int hashCode() {
int hashCode1 = Integer.parseInt(this.getPosition().getX() + "" + this.getPosition().getY());
return hashCode1;
}
}
职位等级:
public class Position {
private int x;
private int y;
public Position(int x, int y) {
this.x = x;
this.y = y;
}
public int getX() {
return x;
}
public int getY() {
return y;
}
@Override
public boolean equals(Object obj) {
Position other = (Position) obj;
return this.x == other.x && this.y == other.y;
}
@Override
public String toString() {
//return String.format("x = %d, y = %d", x, y);
return String.format("(%d, %d)", x, y);
}
}
编辑:这是实施
public static void test(Vertex[][] grid) {
TreeSet<Vertex> someSet = new TreeSet<Vertex>(){{
add(new Vertex(new Position(3, 4), false));
add(new Vertex(new Position(0, 5), false));
}};
Vertex v = new Vertex(new Position(2, 5), false);
if (someSet.contains(v)) {
System.out.println("error");
} else {
System.out.println("ok");
}
}
以上打印error
。
答案 0 :(得分:0)
通过hashcode
计算,点(1,12)
和(11,2)
将被视为相同。
有关哈希码的建议,请参阅best-implementation-for-hashcode-method。
答案 1 :(得分:0)
我弄明白了这个问题。正如@NicolasFilotto指出的那样,我没有提到compareTo
函数。基于a past post,TreeSet 不使用hashCode
,而是使用compareTo
(我假设用于二进制搜索)。这就是我的测试用例失败的原因。