在Java中處理異常的方法有兩種:使用try-catch塊和使用throws關鍵字進行異常聲明。
try {
// 可能引發異常的代碼
int result = 1 / 0;
} catch (ArithmeticException e) {
// 處理異常
System.out.println("發生算術異常:" + e.getMessage());
}
public void doSomething() throws IOException {
// 可能引發異常的代碼
FileReader file = new FileReader("file.txt");
}
無論使用哪種方法,都可以幫助程序員更好地處理程序中可能出現的異常情況,從而提高程序的穩定性和健壯性。