编写类ExceptionTest2 定义两个方法:go()和main()
时间: 2024-04-30 20:21:11 浏览: 58
Java异常处理讲义.docx
以下是类`ExceptionTest2`的代码实现:
```java
public class ExceptionTest2 {
public void go() {
try {
int[] arr = {1, 2, 3};
System.out.println(arr[3]); // 引发ArrayIndexOutOfBoundsException异常
} catch (ArrayIndexOutOfBoundsException e) {
System.out.println("数组越界错误:" + e.getMessage());
}
}
public static void main(String[] args) {
ExceptionTest2 test = new ExceptionTest2();
test.go();
}
}
```
这里定义了一个`ExceptionTest2`类,其中包含了两个方法:`go()`和`main()`。
`go()`方法中,我们故意访问了数组中不存在的索引位置以引发`ArrayIndexOutOfBoundsException`异常,然后通过`catch`块捕获该异常并输出错误信息。
在`main()`方法中,我们创建了一个`ExceptionTest2`对象,并调用其`go()`方法来演示异常处理的过程。
阅读全文