编写一个Java程序,要求在 main() 分别用try-catch语句对以下三种异常进行捕获并显示输出:数组空指针异常,字符串空指针异常,数组下标越界异常
时间: 2024-03-19 07:45:46 浏览: 129
好的,以下是Java代码实现:
```
public class ExceptionHandling {
public static void main(String[] args) {
// 数组空指针异常
try {
int[] arr = null;
int length = arr.length;
} catch (NullPointerException e) {
System.out.println("捕获到数组空指针异常:" + e.getMessage());
}
// 字符串空指针异常
try {
String str = null;
int length = str.length();
} catch (NullPointerException e) {
System.out.println("捕获到字符串空指针异常:" + e.getMessage());
}
// 数组下标越界异常
try {
int[] arr = {1, 2, 3};
int num = arr[4];
} catch (ArrayIndexOutOfBoundsException e) {
System.out.println("捕获到数组下标越界异常:" + e.getMessage());
}
}
}
```
这个程序中,在 main() 方法中分别使用了 try-catch 语句来捕获了数组空指针异常、字符串空指针异常和数组下标越界异常。当程序运行时,如果捕获到了这些异常,就会输出相应的异常信息。
阅读全文