我得到:標線(*)的Java:訪問指針
for (int i = 0; i < boardSize; i++) {
for (int j = 0; j < boardSize; j++) {
rows[i].getSquare(j) = matrix[i][j]; // * points to the (in (j)
columns[j].getSquare(i) = matrix[i][j]; // * points to the (in
int[] b = getBox(i, j);
int[] boxCord = getBoxCoordinates(i + 1, j + 1);
boxes[b[0]][b[1]].getSquare(boxCord[0], boxCord[1]);
}
}
上 '意外型
要求:可變
發現價值' 這是我行類:
private Square[] row;
Row(int rowCount) {
this.row = new Square[rowCount];
}
public Square getSquare(int index) {
return this.row[index];
}
請幫我指出我在這裏做錯了什麼。
在此先感謝。
以前的問題有一些很好的答案,你真的應該接受其中的一些 – Perception 2012-04-09 15:35:49