java.lang.IndexOutOfBoundsException: Index: 128, Size: 128
时间: 2023-11-25 10:49:15 浏览: 69
java 字符串索引越界异常(StringIndexOutBounds)
5星 · 资源好评率100%
java.lang.IndexOutOfBoundsException: Index: 128, Size: 128表示数组或集合的索引超出了范围,因为数组或集合的大小为128,所以最大的索引应该是127,而这里的索引是128,所以会抛出IndexOutOfBoundsException异常。解决方法是检查代码中的数组或集合是否正确初始化,并确保索引不超出范围。
```java
//示例代码
int[] arr = new int[128];
for (int i = 0; i < arr.length; i++) {
arr[i] = i;
}
System.out.println(arr[127]); //输出127
System.out.println(arr[128]); //抛出IndexOutOfBoundsException异常
```
阅读全文