集合中的Java整数对

时间:2016-02-08 06:37:02

标签: java

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

0 个答案:

没有答案