java怎么在程序中处理数组越界异常

2024-11-06 11:05:29
推荐回答(4个)
回答(1):

首先说明一下:ArrayIndexOutOfBoundsException数据越界异常造成的原因通常是:
一个数组 a[3] 他的元素有a[0],a[1],a[2],如果不小心出现a[3],那么会出现数组越界异常了,
建议你在处理的时候,可以判断数组的大小,保证自己不要访问超过数组大小的元素,这样就不会出现数组越界异常了。

回答(2):

随手写的,没测试:

int b[] = new int [5];
Scanner s = new Scanner(System.in);
try {
for(int i = 0; s.hasNextInt(); ++i)
b[i] = s.nextInt(); } catch(ArrayIndexOutOfBoundsException e) {
System.out.print("数组越界! ");
System.out.println("下标: " + e.getMessage());
}
for(int i = 0; i < b.length; ++i)
System.out.print(b[i] + " ");

回答(3):

简单的方法 你可以用try catch 来处理异常

回答(4):

try{
//doSomething....
}
catch(ArrayIndexOutOfBoundsException e){
System.out.println("数组越界!");
e.printStackTrace();
}