try/catch与throws异常捕捉
2018-10-01 本文已影响1人
630d0109dd74
方法声明throws Exception,意味着方法调者处理异常。
perform() throws JSONException { }
调用者:
try {
perform();
} catch (Exception e) { // handle exception }
方法声明throws Exception,意味着方法调者处理异常。
perform() throws JSONException { }
调用者:
try {
perform();
} catch (Exception e) { // handle exception }