溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

throws關(guān)鍵字如何在Java中使用

發(fā)布時(shí)間:2021-04-02 16:30:28 來源:億速云 閱讀:200 作者:Leah 欄目:編程語言

throws關(guān)鍵字如何在Java中使用?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。

Java異常處理

認(rèn)識(shí)異常:

1.異常是導(dǎo)致程序中斷運(yùn)行的一種指令流,如果不對(duì)異常進(jìn)行正確處理,則可能導(dǎo)致程序的中斷執(zhí)行,造成不必要的損失。

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{
   一定會(huì)執(zhí)行的代碼;
}
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("算數(shù)異常"+e1);
}
finally {
  System.out.println("程序退出");
}

常見異常

1.數(shù)組越界異常:ArrayIndexOutOfBoundsException

2.數(shù)字格式化異常:NumberFormatException

3.算數(shù)異常:ArithmeticException

4.空指針異常:NullPointerException

throws關(guān)鍵字

1.在定義一個(gè)方法的時(shí)候可以使用throws關(guān)鍵字聲明,使用throws聲明的方法表示此方法不處理異常,拋給方法的調(diào)用者處理。

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

看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝您對(duì)億速云的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI