您好,登錄后才能下訂單哦!
這篇文章主要介紹Java開發過程中異常處理問題的示例分析,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
我這里是因為:arr[3]不存在:
java.lang.ArrayIndexOutOfBoundsException: 3
public class btyf { public static void main(String[] args){ int[] arr={1,2,3}; System.out.println(arr[0]); System.out.println(arr[3]); System.out.println(arr[1]); //1 異常 ArrayIndexOutOfBoundsException 異常名 // btyf.main(btyf.java:13) 異常位置第13行 // //Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 3 // at btyf.main(btyf.java:13) } }
結果:
java虛擬機:會把異常內容輸出控制臺
public class btyf { public static void main(String[] args){ int[] arr={1,2,3}; System.out.println(arr[0]); try{ System.out.println(arr[3]); }catch (ArrayIndexOutOfBoundsException e) { System.out.println("你訪問的數組索引不存在"); e.printStackTrace(); //輸出異常數據:控制臺 } System.out.println(arr[1]); //1 異常 // ArrayIndexOutOfBoundsException 異常名 // btyf.main(btyf.java:13) 異常位置 //Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 3 // at btyf.main(btyf.java:13) } }
結果:
通過try抓異常,后面沒有異常的代碼就不會因為前面的代碼一些異常而停止,
就可以執行
System.out.println(e.toString());//打印出異常內容:位置和名稱
e.printStackTrace(); //輸出異常數據:控制臺
System.out.println(e.getMessage()); 一樣
多用:System.out.println(e.toString());這個
try{ System.out.println(arr[3]); }catch (ArrayIndexOutOfBoundsException e) { //System.out.println("你訪問的數組索引不存在"); // e.printStackTrace(); System.out.println(e.getMessage()); //public String getMessage() { // return detailMessage; // } System.out.println(e.toString()); }
結果:
但是在異常處:還是要添加try catch
添加位置:異常成員方法public static void main(String[] args)throws ArrayIndexOutOfBoundsException{}
代碼:
public class uytig { public static void main(String[] args)throws ArrayIndexOutOfBoundsException{ int[] arr={1,2,3}; System.out.println(arr[0]); try { System.out.println(arr[3]); } catch (Exception e) { e.printStackTrace(); } System.out.println("執行中"); } }
以上是“Java開發過程中異常處理問題的示例分析”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。