在Java中,我們使用try-catch語句來捕獲和處理異常。以下是一個簡單的示例,演示了如何捕獲和處理異常:
public class ExceptionHandlingExample {
public static void main(String[] args) {
int[] numbers = {1, 2, 3};
try {
// 嘗試訪問數組中不存在的元素,這將引發ArrayIndexOutOfBoundsException
int num = numbers[3];
System.out.println("This line will not be executed because an exception is thrown.");
} catch (ArrayIndexOutOfBoundsException e) {
// 當異常被捕獲時,執行此處的代碼
System.out.println("An exception occurred: " + e.getMessage());
// 可以在這里處理異常,例如記錄日志、顯示錯誤消息等
} finally {
// 無論是否發生異常,都會執行此處的代碼
System.out.println("This line will always be executed.");
}
System.out.println("Program continues after the try-catch block.");
}
}
在這個示例中,我們嘗試訪問數組中不存在的元素,這將引發ArrayIndexOutOfBoundsException
。我們使用try-catch語句捕獲這個異常,并在catch塊中處理它。無論是否發生異常,finally塊中的代碼都會被執行。