方法声明throws Exception,意味着方法调者处理异常。
perform() throws JSONException { }
调用者:
try {
perform();
} catch (Exception e) { // handle exception }
方法声明throws Exception,意味着方法调者处理异常。
perform() throws JSONException { }
调用者:
try {
perform();
} catch (Exception e) { // handle exception }