可以使用添加set和get方法public class Chess {private int x;private int y;public int getX() { return x; } public void setX(int x) { this.x = x; } public int getY() { return y; } public void setY(int y) { this.y = y; }}
不能!