1

假设有一个简单的类:

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;
    }
}

还有一个HashMapPoint到某事,让我们说CellcellMap = 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());
        }
    }
}

然后做类似(微不足道的)这样的事情:

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));
}

并分别在第一种和第二种情况下得到true和。false到底是怎么回事?这张地图是在比较哈希而不是值吗?如何使示例在这两种情况下都返回 true?

4

1 回答 1

8

由于您正在使用HashMap, not TreeMap,因此您需要在您的课程中覆盖hashCodeand equals, not :compareToPoint

@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;
}
于 2013-07-01T18:42:04.067 回答