Java程序报错java.lang.ArrayIndexOutOfBoundsException:数组越界

java.lang.ArrayIndexOutOfBoundsException:经常可以遇到,这就是数组开小了,导致咱们遍历的越界

例如

int arr[]=new int [] {1,2,3,4,5,6,7,8};
        for(int i=0;i<=arr.length;i++)
        {
            System.out.print(arr[i]);
        }

这里我们开了8个数组,但是却从零到8遍历了9次,就是数组越界

你可能感兴趣的:(Java程序报错java.lang.ArrayIndexOutOfBoundsException:数组越界)