throw和throws是Java中處理異常的關鍵字。
示例:
public void divide(int num1, int num2) {
if (num2 == 0) {
throw new ArithmeticException("除數不能為0");
}
int result = num1 / num2;
System.out.println("結果為:" + result);
}
示例:
public void readFile() throws IOException {
// 讀取文件的代碼
}
總結: