我是名初学者,请用java创建一个Test类,内容如下: public class Test { public void test(){ int arr[] = new int[3]; arr[0] = 1; arr[1] = 2; arr[2] = 3; System.out.println(arr[3]); } } 请将test方法中可能出现的异常抛出,然后由主方法调用并捕获异常。
时间: 2024-02-28 21:53:20 浏览: 64
用BlueJ的Java排序,初学者适用
好的,下面是完整的代码实现:
```
public class Test {
public void test() throws ArrayIndexOutOfBoundsException {
int arr[] = new int[3];
arr[0] = 1;
arr[1] = 2;
arr[2] = 3;
System.out.println(arr[3]);
}
public static void main(String[] args) {
Test t = new Test();
try {
t.test();
} catch (ArrayIndexOutOfBoundsException e) {
System.out.println("数组越界异常");
e.printStackTrace();
}
}
}
```
在这个代码中,我们将可能出现的异常 ArrayIndexOutOfBoundsException 抛出到 test 方法的声明中。同时,在主方法中,我们使用 try-catch 语句来捕获该异常,并在 catch 块中打印错误信息。这样就能够保证程序能够正常运行,并且能够处理异常情况。
阅读全文