溫馨提示×

如何在trycatch中處理多個(gè)異常

小樊
99
2024-09-03 04:01:47
欄目: 編程語言

在Java中,您可以使用try-catch語句處理多個(gè)異常

public class MultipleExceptionHandling {
    public static void main(String[] args) {
        try {
            int result1 = riskyOperation1();
            int result2 = riskyOperation2();
            int result3 = riskyOperation3();
        } catch (ArithmeticException e) {
            System.out.println("ArithmeticException: " + e.getMessage());
        } catch (NullPointerException e) {
            System.out.println("NullPointerException: " + e.getMessage());
        } catch (Exception e) {
            System.out.println("Other exception: " + e.getMessage());
        }
    }

    private static int riskyOperation1() {
        // Your code here
    }

    private static int riskyOperation2() {
        // Your code here
    }

    private static int riskyOperation3() {
        // Your code here
    }
}

在這個(gè)示例中,我們在一個(gè)try塊中調(diào)用了三個(gè)方法,每個(gè)方法都有可能拋出不同類型的異常。然后,我們使用了多個(gè)catch塊來處理可能發(fā)生的異常。

注意,catch塊的順序很重要。當(dāng)異常被拋出時(shí),Java運(yùn)行時(shí)系統(tǒng)會(huì)從上到下檢查catch塊,找到第一個(gè)與異常類型匹配的catch塊。因此,將最具體的異常類放在前面,最不具體的異常類(如Exception)放在最后。如果不按照這個(gè)順序,可能會(huì)導(dǎo)致捕獲不到預(yù)期的異常。

0