多 catch 語句:
處理不同異常的範例:
以下程式捕捉兩種類型的異常:
ArithmeticException(除以零)。
ArrayIndexOutOfBoundsException(超出陣列範圍的存取)。
程式碼範例:
class ExcDemo4 { public static void main(String args[]) { // O array numer é maior que denom. int numer[] = { 4, 8, 16, 32, 64, 128, 256, 512 }; int denom[] = { 2, 0, 4, 4, 0, 8 }; for (int i = 0; i < numer.length; i++) { try { // Tenta realizar a divisão System.out.println(numer[i] + " / " + denom[i] + " is " + numer[i] / denom[i]); } catch (ArithmeticException exc) { // Captura e trata a exceção de divisão por zero System.out.println("Can't divide by Zero!"); } catch (ArrayIndexOutOfBoundsException exc) { // Captura e trata a exceção de acesso fora dos limites do array System.out.println("No matching element found."); } } } }
程式輸出:
範例輸出:
4 / 2 is 2 Can't divide by Zero! 16 / 4 is 4 32 / 4 is 8 Can't divide by Zero! 128 / 8 is 16 No matching element found. No matching element found.
catch 區塊的執行:
每個捕獲都會按照其在程式碼中出現的順序進行檢查。
僅執行與發現的異常類型對應的catch,其他的將被忽略。
使用多個 catch 的優點:
結論:
以上是使用多個 catch 語句的詳細內容。更多資訊請關注PHP中文網其他相關文章!