Java:抛出一个异常会杀死它的方法吗?
2022-09-01 03:42:01
例如:
public String showMsg(String msg) throws Exception {
if(msg == null) {
throw new Exception("Message is null");
}
//Create message anyways and return it
return "DEFAULT MESSAGE";
}
String msg = null;
try {
msg = showMsg(null);
} catch (Exception e) {
//I just want to ignore this right now.
}
System.out.println(msg); //Will this equal DEFAULT MESSAGE or null?
在某些情况下,我需要基本上忽略异常(通常是当一个方法可以抛出多个异常并且一个在特定情况下无关紧要时),所以尽管我为简单起见使用了一个可怜的例子,但showMsg中的返回是否仍然运行,或者抛出实际上返回该方法?