假设一个人有一个简单的类:
public class Point implements Comparable<Point> {
public int compareTo(Point p) {
if ((p.x == this.x) && (p.y == this.y)) {
return 0;
} else if (((p.x == this.x) && (p.y > this.y)) || p.x > this.x) {
return 1;
} else {
return -1;
}
}
private int x;
private int y;
public Point(int x, int y) {
this.x = x;
this.y = y;
}
public int getX() {
return x;
}
public int getY() {
return y;
}
}
Run Code Online (Sandbox Code Playgroud)
并且HashMap从Point东西,让我们说Cell:
cellMap = new HashMap<Point, Cell>();
那么一个填写cellMap如下:
for (int x = -width; x <= width; x++) {
for (int y = -height; y <= height; y++) {
final Point pt = new Point(x,y);
cellMap.put(pt, new Cell());
}
}
}
Run Code Online (Sandbox Code Playgroud)
然后一个人做了(琐碎的)这个:
for (Point pt : cellMap.keySet()) {
System.out.println(cellMap.containsKey(pt));
Point p = new Point(pt.getX(), pt.getY());
System.out.println(cellMap.containsKey(p));
}
Run Code Online (Sandbox Code Playgroud)
并得到true与false分别,第一和第二种情况.到底是怎么回事?这张地图比较哈希值而不是值吗?如何使示例在两种情况下都返回true?
由于您使用的HashMap,不TreeMap,你需要重写hashCode和equals,而不是compareTo在你的Point类:
@Override
public int hashCode() {
return 31*x + y;
}
@Override
public bool equals(Object other) {
if (other == null) return false;
if (other == this) return true;
if (!(other instanceof Point)) return false;
Point p = (Point)other;
return x == p.x && y == p.y;
}
Run Code Online (Sandbox Code Playgroud)