使用坐标时我在格式化时遇到问题。
public class Coordinate {
public int x;
public int y;
public Coordinate( int x, int y) {
this.x = x;
this.y = y;
}
}
所以,后来,当我试图找到我的兔子的位置时,我使用:
Coordinate (x, y) = rabbit.get(i);
这不起作用,但这确实:
Coordinate z = rabbit.get(i);
我想找到 x 和 y 值,所以我对如何做到这一点以及为什么 Coordinate (x, y) 不起作用感到困惑。谢谢你的帮助!