2 回答
TA贡献1155条经验 获得超0个赞
Cell[][]这是。但是请注意,这与二维数组略有不同。它实际上是一个一维数组,其元素都具有类型Cell[]。这意味着您的阵列不必是“矩形”。
Cell[][] cells = new Cell[10][10];做你所期望的,并创建一个 10x10 的矩形阵列。
但是,您可以执行以下操作:
Cell[][] cells = new Cell[10][];
cells[0] = new Cell[1];
cells[1] = new Cell[1000];
...
cells[1][5] = 1; // allowed, since cells[1] is a Cell[] of size 1000
cells[0][5] = 1; // throws ArrayIndexOutOfBoundsException, since cells[0] has size 1
例如,如果您尝试表示三角形数据结构(例如帕斯卡三角形),这会有所帮助。
TA贡献1998条经验 获得超6个赞
实际上我认为 Array 不会方便,固定大小等。也许在字段中使用带有 Collections 的额外类会更符合 OOP 风格和方便。
class Board {
List<List<Cell>> hash;
public Cell getCell(int x, int y) {
// might be usefull to copy return value for immutability of hash
return hash.get(x).get(y);
}
public void setCell(Cell cell, int x, int y) {
this.hash.get(x).set(y, cell);
}
}
添加回答
举报