2 回答

TA貢獻(xiàn)1155條經(jīng)驗(yàn) 獲得超0個(gè)贊
Cell[][]這是。但是請(qǐng)注意,這與二維數(shù)組略有不同。它實(shí)際上是一個(gè)一維數(shù)組,其元素都具有類型Cell[]。這意味著您的陣列不必是“矩形”。
Cell[][] cells = new Cell[10][10];做你所期望的,并創(chuàng)建一個(gè) 10x10 的矩形陣列。
但是,您可以執(zhí)行以下操作:
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
例如,如果您嘗試表示三角形數(shù)據(jù)結(jié)構(gòu)(例如帕斯卡三角形),這會(huì)有所幫助。

TA貢獻(xiàn)1998條經(jīng)驗(yàn) 獲得超6個(gè)贊
實(shí)際上我認(rèn)為 Array 不會(huì)方便,固定大小等。也許在字段中使用帶有 Collections 的額外類會(huì)更符合 OOP 風(fēng)格和方便。
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);
}
}
添加回答
舉報(bào)