私はConnect 4ゲームを作成するプロセスで自分のコードの単純な部分を書き込もうとしています。私は最終的にドロップできる場所など6 7によってボードを作成して表示しようとしているXさんとOさん:Javaエラー:スレッド "main"の例外java.lang.ArrayIndexOutOfBoundsException:6
||||||||
||||||||
||||||||
||||||||
||||||||
||||||||
私はエラーを取得しておいてください。例外をスレッドで「メイン」java.lang.ArrayIndexOutOfBoundsException:6
public static void printConnect4Board(){
final int WIDTH = 6;
final int HEIGHT = 7;
int [] [] connect4Board = new int [WIDTH][HEIGHT];
Scanner input = new Scanner(System.in);
for(int w = 0; w < connect4Board.length; w++){
for(int h = 0; h < connect4Board[w].length; h++){
System.out.println(connect4Board[w][h] + "|");
}
System.out.println();
}
}
任意の助けが理解されるであろう。ありがとう。 printlnから印刷まで
は、最後から2番目の行に 'connect4Board [H] [W]'であるべき。 –