在Java中,異常處理是通過使用try-catch語句塊來捕獲和處理異常的。以下是一個簡單的示例,說明如何捕獲異常:
public class ExceptionHandlingExample {
public static void main(String[] args) {
int[] numbers = {1, 2, 3};
try {
// 嘗試執行可能拋出異常的代碼
int result = divide(10, 0);
System.out.println("Result: " + result);
} catch (ArithmeticException e) {
// 捕獲特定類型的異常
System.out.println("An error occurred: " + e.getMessage());
} catch (Exception e) {
// 捕獲其他類型的異常
System.out.println("An unexpected error occurred: " + e.getMessage());
} finally {
// 無論是否發生異常,都會執行的代碼塊
System.out.println("This block will always be executed.");
}
}
public static int divide(int a, int b) throws ArithmeticException {
return a / b;
}
}
在這個示例中,我們嘗試執行一個可能拋出ArithmeticException
的除法操作。如果操作成功,我們將打印結果。如果發生異常,我們將根據異常類型(在這種情況下是ArithmeticException
)執行相應的catch塊。最后,無論是否發生異常,finally塊都會執行。