は私が取得:マークされた行(*)の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