最佳答案
约书亚·布洛赫在“有效Java”中说
使用检查异常 可恢复条件和运行时 编程错误的例外 (第2版第58项)
让我们看看我是否理解正确。
以下是我对检查异常的理解:
try{
String userInput = //read in user input
Long id = Long.parseLong(userInput);
}catch(NumberFormatException e){
id = 0; //recover the situation by setting the id to 0
}
1.上述是否被视为已检查的异常?
2. RuntimeException是未经检查的异常吗?
以下是我对未经检查的异常的理解:
try{
File file = new File("my/file/path");
FileInputStream fis = new FileInputStream(file);
}catch(FileNotFoundException e){
//3. What should I do here?
//Should I "throw new FileNotFoundException("File not found");"?
//Should I log?
//Or should I System.exit(0);?
}
4.现在,上面的代码不能也是检查异常吗?我可以尝试像这样恢复情况吗?我可以吗?(注意:我的第三个问题在上面的catch
中)
try{
String filePath = //read in from user input file path
File file = new File(filePath);
FileInputStream fis = new FileInputStream(file);
}catch(FileNotFoundException e){
//Kindly prompt the user an error message
//Somehow ask the user to re-enter the file path.
}
5.人们为什么要这样做?
public void someMethod throws Exception{
}
为什么他们让异常冒泡?越快处理错误不是越好吗?为什么冒泡?
6.我应该冒泡确切的异常还是使用异常掩盖它?
下面是我的读数