中級 › ArrayIndexOutOfBoundsException の原因と直し方 › パターン2
ArrayIndexOutOfBoundsException の原因と直し方
添字が0始まりであることの帰結です。
1 public class Main { 2 public static void main(String[] args) { 3 int[] nums = {10, 20, 30}; 4 System.out.println(nums[_______________]); ^ 5 } 6 }
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException:
Index 3 out of bounds for length 3exited with code 1
空欄を埋めてビルドを通す
最後の要素の添字は length - 1 です。添字が0始まりであることの直接的な帰結です。
次の問題