写一个java异常代码
时间: 2024-04-29 09:24:31 浏览: 105
Java 异常
以下是一个简单的Java异常代码示例:
```
public class ExceptionExample {
public static void main(String[] args) {
try {
int[] numbers = {1, 2, 3};
System.out.println(numbers[3]); // 数组越界异常
} catch (ArrayIndexOutOfBoundsException e) {
System.out.println("发生了数组越界异常!");
e.printStackTrace();
}
}
}
```
这个程序会尝试打印数组中的第四个元素,但是该元素不存在,因此会抛出“ArrayIndexOutOfBoundsException”异常。在catch块中,我们打印了一条错误消息并使用“printStackTrace()”方法打印了异常的堆栈跟踪信息,以帮助我们了解程序发生了什么问题。
阅读全文