private HashSet<Coords> pairs = new HashSet<Coords>();
private class Coords {
int x;
int z;
Coords(int x, int z) {
this.x = x;
this.z = z;
}
}
如何检查HashSet是否包含一组两个x,y坐标?以下不起作用。
pairs.contains(new Coords(x, z));