您好,登錄后才能下訂單哦!
小編給大家分享一下java異常捕獲與處理的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
java異常捕獲與處理的方法:1、throws關鍵字,由系統自動將所捕獲的異常信息拋給上級調用方法;2、throw的作用是手工拋出異常類的實例化對象;3、RunException是Exception的子類,由用戶選擇是否進行處理。
java異常捕獲與處理的方法:
一、異常處理的使用
由于finally塊是可以省略的,異常處理格式可以分為三類:try{ }——catch{ }、try{ }——catch{ }——finally{ }、try{ }——finally{ }。
1 public class DealException 2 { 3 public static void main(String args[]) 4 { 5 try 6 //要檢查的程序語句 7 { 8 int a[] = new int[5]; 9 a[10] = 7;//出現異常 10 } 11 catch(ArrayIndexOutOfBoundsException ex) 12 //異常發生時的處理語句 13 { 14 System.out.println("超出數組范圍!"); 15 } 16 finally 17 //這個代碼塊一定會被執行 18 { 19 System.out.println("*****"); 20 } 21 System.out.println("異常處理結束!"); 22 } 23 }
可以看出,在異常捕捉的過程中要進行兩個判斷,第一是try程序塊是否有異常產生,第二是產生的異常是否和catch()括號內想要捕捉的異常相同。
那么,如果出現的異常和catch()內想要捕捉的異常不相同時怎么辦呢?事實上我們可以在一個try語句后跟上多個異常處理catch語句,來處理多種不同類型的異常。
1 public class DealException 2 { 3 public static void main(String args[]) 4 { 5 try 6 //要檢查的程序語句 7 { 8 int a[] = new int[5]; 9 a[0] = 3; 10 a[1] = 1; 11 //a[1] = 0;//除數為0異常 12 //a[10] = 7;//數組下標越界異常 13 int result = a[0]/a[1]; 14 System.out.println(result); 15 } 16 catch(ArrayIndexOutOfBoundsException ex) 17 //異常發生時的處理語句 18 { 19 System.out.println("數組越界異常"); 20 ex.printStackTrace();//顯示異常的堆棧跟蹤信息 21 } 22 catch(ArithmeticException ex) 23 { 24 System.out.println("算術運算異常"); 25 ex.printStackTrace(); 26 } 27 finally 28 //這個代碼塊一定會被執行 29 { 30 System.out.println("finally語句不論是否有異常都會被執行。"); 31 } 32 System.out.println("異常處理結束!"); 33 } 34 }
上述例子中ex.printStackTrace();就是對異常類對象ex的使用,輸出了詳細的異常堆棧跟蹤信息,包括異常的類型,異常發生在哪個包、哪個類、哪個方法以及異常發生的行號。
二、throws關鍵字
throws聲明的方法表示該方法不處理異常,而由系統自動將所捕獲的異常信息拋給上級調用方法。
1 public class throwsDemo 2 { 3 public static void main(String[] args) 4 { 5 int[] a = new int[5]; 6 try 7 { 8 setZero(a,10); 9 } 10 catch(ArrayIndexOutOfBoundsException ex) 11 { 12 System.out.println("數組越界錯誤!"); 13 System.out.println("異常:"+ex); 14 } 15 System.out.println("main()方法結束。"); 16 } 17 private static void setZero(int[] a,int index) throws ArrayIndexOutOfBoundsException 18 { 19 a[index] = 0; 20 } 21 }
throws關鍵字拋出異常,“ArrayIndexOutOfBoundsException”表明setZero()方法可能存在的異常類型,一旦方法出現異常,setZero()方法自己并不處理,而是將異常提交給它的上級調用者main()方法。
三、throw關鍵字
throw的作用是手工拋出異常類的實例化對象。
1 public class throwDemo 2 { 3 public static void main(String[] args) 4 { 5 try 6 { 7 //拋出異常的實例化對象 8 throw new ArrayIndexOutOfBoundsException("\n個性化異常信息:\n數組下標越界"); 9 } 10 catch(ArrayIndexOutOfBoundsException ex) 11 { 12 System.out.println(ex); 13 } 14 } 15 }
我們能發現,throw好像屬于沒事找事,引發運行期異常,并自定義提示信息。事實上,throw通常和throws聯合使用,拋出的是程序中已經產生的異常類實例。
ExceptionDemo
輸出結果:
setZero方法開始:
setZero方法結束。
異常:java.lang.ArrayIndexOutOfBoundsException: 10
main()方法結束!
四、RuntimeException類
Exception和RuntimeException的區別:
Exception:強制性要求用戶必須處理;
RunException:是Exception的子類,由用戶選擇是否進行處理。
五、自定義異常類
自定義異常類繼承自Exception類,可以使用父類的大量的方法,也可自己編寫方法來處理特定的事件。Java提供用繼承的方式運行用戶自己編寫的異常類。
1 class MyException extends Exception 2 { 3 public MyException(String message) 4 { 5 super(message); 6 } 7 } 8 public class DefinedException 9 { 10 public static void main(String[] args) 11 { 12 try 13 { 14 throw new MyException("\n自定義異常類!"); 15 } 16 catch(MyException e) 17 { 18 System.out.println(e); 19 } 20 } 21 }
看完了這篇文章,相信你對java異常捕獲與處理的方法有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。