您好,登錄后才能下訂單哦!
throws關鍵字如何在Java中使用?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
Java異常處理
認識異常:
1.異常是導致程序中斷運行的一種指令流,如果不對異常進行正確處理,則可能導致程序的中斷執行,造成不必要的損失。
2.異常范例
空指針異常
Exc e=null; System.out.println(e.i);
除0異常
int a=10; int b=0; System.out.println(a/b);
3.處理異常
異常格式:
try{ 異常語句; } catch(Exception e){ } finally{ 一定會執行的代碼; }
int a=10; int b=0; try { System.out.println(a/b); } catch (ArithmeticException e){ System.out.println(e); }
int temp=0; Exc e=null; try { temp=e.a/e.b; System.out.println(temp); } catch (NullPointerException e1){ System.out.println("空指針異常"+e1); } catch (ArithmeticException e1){ System.out.println("算數異常"+e1); } finally { System.out.println("程序退出"); }
常見異常
1.數組越界異常:ArrayIndexOutOfBoundsException
2.數字格式化異常:NumberFormatException
3.算數異常:ArithmeticException
4.空指針異常:NullPointerException
throws關鍵字
1.在定義一個方法的時候可以使用throws
關鍵字聲明,使用throws
聲明的方法表示此方法不處理異常,拋給方法的調用者處理。
2.格式:
public void tell()throws Exception{}
例子:
public static void main(String [] args){ try { tell(10,0); } catch (Exception e){ System.out.println(e); } } public static void tell(int i,int j)throws ArithmeticException{ int temp=0; temp=i/j; System.out.println(temp); }
還可以:
public static void main(String [] args)throws Exception{ tell(10,0); } public static void tell(int i,int j)throws ArithmeticException{ int temp=0; temp=i/j; System.out.println(temp); }
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。