我有一些代碼段:什麼時候必須圍繞try/catch?
public static void a() throws NumberFormatException {
return;
}
public static void b() throws InterruptedException{
return;
}
public static void main(String[] args) {
a();
b();
}
而Eclipse的說,我有包圍的try/catch到函數調用B(),但我沒有這樣做,有()調用。爲什麼?調用時如何使函數使試圖捕獲環繞?
看看在Java中檢查與未檢查的異常 - http://www.javapractices.com/topic/TopicAction.do?Id=12 –