嗨如何將此運行時異常轉換爲已檢查的異常,此方法必須強制類用戶處理方法簽名中指定的異常。這個例外是未經檢查的例外。如何將此運行時異常轉換爲檢查的異常?
public class Exception {
int a, b, c;
void set(String data[]) throws NumberFormatException, ArrayIndexOutOfBoundsException {
a = Integer.parseInt(data[0]);//convert the string into int. eg1.("12" ---> 12) eg2.("df23" ---> fail)
b = Integer.parseInt(data[1]);
c = 0;
}
void divide() throws ArithmeticException {
c = a/b;
}
void disp() {
System.out.println(a + "/" + b + " = " + c);
}
}
在哪裏可以換PLZ清除我 – user3168013
檢查更新的答案。 –