方法声明throws Exception,意味着方法调者处理异常。
perform() throws JSONException { }
调用者:
try {
perform();
} catch (Exception e) { // handle exception }
方法声明throws Exception,意味着方法调者处理异常。
perform() throws JSONException { }
调用者:
try {
perform();
} catch (Exception e) { // handle exception }
本文标题:try/catch与throws异常捕捉
本文链接:https://www.haomeiwen.com/subject/dennoftx.html
网友评论