91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

throws關鍵字如何在Java中使用

發布時間:2021-04-02 16:30:28 來源:億速云 閱讀:202 作者:Leah 欄目:編程語言

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);
}

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

凤台县| 陇南市| 安化县| 博客| 绥德县| 神农架林区| 民权县| 红桥区| 湘潭市| 宾川县| 崇礼县| 安溪县| 眉山市| 务川| 库尔勒市| 运城市| 枞阳县| 新干县| 柘城县| 垫江县| 平江县| 清新县| 邵阳县| 徐水县| 读书| 彭山县| 小金县| 阳新县| 佛冈县| 南召县| 太谷县| 阿克苏市| 津市市| 绥芬河市| 汉中市| 资兴市| 塔城市| 徐州市| 金阳县| 祁连县| 通榆县|