1.3 课前问题列表
1.说出两个我们在使用软件、APP时遇到的错误。这些错误可能是什么类型的错误?你是怎么解决这类错误呢(重启、查看日志...)?
1)如界面内容显示错误、界面登录错误、软件系统崩溃等。
2)这些错误可能是编写程序时的编译错误、逻辑错误、运行时错误。
3)通常我会选择强制关闭窗口,重启软件、app
2.说出两个你在编写Java程序时最常遇到的错误。并判定这些错误是什么类型的错误(编译错误、运行时错误)。你认为哪种类型的错误更好解决呢?
1)编写程序时,出现标点符号为中文字符;访问数组时,数组越界
2)出现中文标点符号是编译错误,数组越界是运行时错误
3)我认为编译错误更好解决,因为无法通过编译后,通常编译器会提醒大概哪个代码区域出现错误
3.查询JDK文档,说说如下代码哪行抛出了什么类型的异常?为什么该段程序明明可能产生错误,但是不写try...catch,也可编译通过。
public static void main(String[] args) {
int[] x = new int[3];
Scanner inputScan = new Scanner(System.in);
for(int i = 0; i < x.length;){
System.out.println("Please input the "+i+" integer:");
String inputInt = inputScan.nextLine();
x[i] = Integer.parseInt(inputInt); //注意这里!
i++;
}
System.out.println(Arrays.toString(x));
}
1)抛出了 java.lang.NumberFormatException 属于Unchecked Exception异常
2)因为只要保证x可以被解析为整数,就可以避免产生异常,通过编译
为上述代码添加try...catch。使得当输入错误时,可提示重新输入,直到输入正确后,才能继续往下执行。
public static void main(String[] args) {
int[] x = new int[3];
Scanner inputScan = new Scanner(System.in);
for(int i = 0; i < x.length;){
System.out.println("Please input the "+i+" integer:");
String inputInt = inputScan.nextLine();
try{
x[i] = Integer.parseInt(inputInt);
}catch(Exception e){
System.out.println("格式错误!请重新输入!");
}
i++;
}
System.out.println(Arrays.toString(x));
}
4.将如下代码中NumberFormatException改成Exception可以吗?
String x = "abc";
try {
int a = Integer.parseInt(x);
System.out.println(a);
} catch (NumberFormatException e) {
e.printStackTrace();
}
不可以,抛出NumberFormatException异常
5.查询JDK文档,说说如下代码哪里抛出了什么异常?该异常意味着吗什么?需要捕获吗?为什么?
String fileName = "abc";
FileReader fileReader = new FileReader(fileName);
1)抛出FileNotFoundException异常
2)该异常属于CheckedException,意味着程序启动了Java的异常处理机制
3)编译器会强制检查并通过try-catch块来对其捕获,或者在方法头声明抛出该异常,交给调用者处理,收到这个异常通知后就可以采取各种处理措施,这种机制能使程序更加健壮