Java異常處理怎樣捕獲錯(cuò)誤

小樊
81
2024-10-24 06:10:44

在Java中,我們使用try-catch語(yǔ)句來(lái)捕獲和處理異常。以下是一個(gè)簡(jiǎn)單的示例,演示了如何捕獲和處理異常:

public class ExceptionHandlingExample {
    public static void main(String[] args) {
        int[] numbers = {1, 2, 3};

        try {
            // 嘗試訪問(wèn)數(shù)組中不存在的元素,這將引發(fā)ArrayIndexOutOfBoundsException
            int num = numbers[3];
            System.out.println("This line will not be executed because an exception is thrown.");
        } catch (ArrayIndexOutOfBoundsException e) {
            // 當(dāng)異常被捕獲時(shí),執(zhí)行此處的代碼
            System.out.println("An exception occurred: " + e.getMessage());
            // 可以在這里處理異常,例如記錄日志、顯示錯(cuò)誤消息等
        } finally {
            // 無(wú)論是否發(fā)生異常,都會(huì)執(zhí)行此處的代碼
            System.out.println("This line will always be executed.");
        }

        System.out.println("Program continues after the try-catch block.");
    }
}

在這個(gè)示例中,我們嘗試訪問(wèn)數(shù)組中不存在的元素,這將引發(fā)ArrayIndexOutOfBoundsException。我們使用try-catch語(yǔ)句捕獲這個(gè)異常,并在catch塊中處理它。無(wú)論是否發(fā)生異常,finally塊中的代碼都會(huì)被執(zhí)行。

0