以下のグリッドをすべてtrueに設定しようとしていますが、エラーが発生します
「2685 は java.util.Arrays の有効な行番号ではありません」
public class Grid {
static boolean[][] gridCon;
boolean white = true;
boolean black = false;
private static int Height;
private static int Width;
public Grid(int height, int width) {
Height = height;
Width = width;
Arrays.fill(gridCon, true);
}
}
これを修正するにはどうすればよいですか?