こんにちは、作業コードがありますが、座標を印刷したいと思います。座標と文字列を保持するハッシュマップがあります。座標を入れることができる座標のクラスがありますが、印刷しようとすると、明らかに正しいことをしていないと混乱します。ご覧いただきありがとうございます
public class XYTest {
static class Coords {
int x;
int y;
public boolean equals(Object o) {
Coords c = (Coords) o;
return c.x == x && c.y == y;
}
public Coords(int x, int y) {
super();
this.x = x;
this.y = y;
}
public int hashCode() {
return new Integer(x + "0" + y);
}
}
public static void main(String args[]) {
HashMap<Coords, String> map = new HashMap<Coords, String>();
map.put(new Coords(65, 72), "Dan");
map.put(new Coords(68, 78), "Amn");
map.put(new Coords(675, 89), "Ann");
System.out.println(map.size());
}
}