自己编码以产生常见异常。
main方法:
- 事先定义好一个大小为5的数组。
- 根据屏幕输入产生相应异常
提示: 可以使用System.out.println(e)打印异常对象的信息,其中e为捕获到的异常对象。
输入说明:
arr代表产生访问数组是产生的异常。然后输入下标 ,如果抛出ArrayIndexOutOfBoundsException异常则显示,如果不抛出异常则不显示。null,产生NullPointerExceptioncast,尝试将String对象强制转化为Integer对象,产生ClassCastException。num,然后输入字符,转化为Integer,如果抛出NumberFormatException异常则显示。- 其他,结束程序。
输入样例:
arr 4
null
cast
num 8
arr 7
num a
other
输出样例:
java.lang.NullPointerException
java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Integer
java.lang.ArrayIndexOutOfBoundsException: 7
java.lang.NumberFormatException: For input string: "a"
答案
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
Integer[] arr = new Integer[5];
label:
while(scanner.hasNext()){
String str = scanner.next();
switch (str) {
case "arr":
int index = scanner.nextInt();
try {
Integer test1 = arr[index];
} catch (ArrayIndexOutOfBoundsException e) {
System.out.println(e);
}
break;
case "null":
try {
String test2 = null;
boolean b = test2.equals("null");
}catch (Exception e){
System.out.println(e);
}
break;
case "cast":
try{
Object test3 = "1";
Integer s = (Integer)test3;
}catch (Exception e){
System.out.println(e);
}
break;
case "num":
String temp = scanner.next();
try{
Integer temp1 = Integer.parseInt(temp);
}catch (NumberFormatException e){
System.out.println(e);
}
break;
default:
break label;
}
}
}
}

本文通过实例展示了如何在Java中利用main方法自动生成并处理常见的编程异常,包括ArrayIndexOutOfBoundsException、NullPointerException和ClassCastException,以及数值转换引发的NumberFormatException。

3664

被折叠的 条评论
为什么被折叠?



