1. 程式人生 > >Java鏈式異常

Java鏈式異常

Java 例項 - 鏈試異常

Java 例項 Java 例項

以下例項演示了使用多個 catch 來處理鏈試異常:

Main.java 檔案

public class Main { public static void main (String args[])throws Exception { int n=20,result=0; try{ result=n/0; System.out.println("結果為"+result); } catch(ArithmeticException ex){ System.out.println("發算術異常: "+ex); try { throw new NumberFormatException(); } catch(NumberFormatException ex1) { System.out.println("手動丟擲鏈試異常 : "+ex1); } } } }

以上程式碼執行輸出結果為:

發算術異常: java.lang.ArithmeticException: / by zero 手動丟擲鏈試異常 : java.lang.NumberFormatException