Java中的ArrayIndexOutOfBoundsException(数组越界异常)是一种运行时异常,表示访问了数组的非法索引位置。
在数组中,索引从0开始,并以数组长度减一为上限。如果使用了小于0或大于等于数组长度的索引,就会抛出ArrayIndexOutOfBoundsException异常。
以下是一个示例代码,演示了这个异常的情况:
public class ArrayIndexOutOfBoundsExceptionExample {
public static void main(String[] args) {
int[] arr = {1, 2, 3};
// 访问合法索引位置
System.out.println(arr[0]); // 输出:1
// 访问非法索引位置
System.out.println(arr[3]); // 抛出ArrayIndexOutOfBoundsException异常
}
}
在上述示例中,数组arr
的长度为3,有效的索引位置为0、1和2。当试图访问索引为3的位置时,就会抛出ArrayIndexOutOfBoundsException异常。
要避免这个异常,需要确保索引在合法范围内。可以使用条件判断语句或循环结构来检查索引值是否有效。
标签:ArrayIndexOutOfBoundsException,arr,java,访问,越界,索引,数组,异常 From: https://blog.csdn.net/mili_java/article/details/139448129