Joshua Bloch 在“ Effective 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. 我应该冒泡确切的异常还是使用异常来掩盖它?
以下是我的阅读