亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

如何在Java中異常處理

發布時間:2021-04-15 17:53:34 來源:億速云 閱讀:156 作者:Leah 欄目:編程語言

如何在Java中異常處理?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

示例代碼:

public class ExecDemo {
  public static void main(String[] args) {
    int[] nums = new int[4];
    System.out.println("before the exception:");
    try {  //try代碼塊  try catch代碼塊可以嵌套
      try{
         nums[7] = 10;  //數組越界
         System.out.println("no exception:");
      }catch(ArithmeticException e){
         e.printStackTrace();
      }
    }catch(ArithmeticException e) { //catch代碼塊  多個catch塊
      e.printStackTrace();  //打印異常信息
    }catch(ArrayIndexOutOfBoundsException e){  // 捕獲數組越界錯誤  捕獲子類異常
       e.printStackTrace();
    }catch(Throwable e){  //捕獲超類異常 Throwable是所有異常的超類
       e.printStackTrace();
    }
    System.out.println("after the exception");
  }
}

拋出異常:

public class ThrowDemo {
  public static void main(String[] args) {
    try {
      System.out.println("before throw:");
      throw new ArithmeticException();  //throw關鍵字拋出一個ArithmeticException()異常(手動拋出異常)
    } catch (ArithmeticException e) {  //捕獲異常
      System.out.println("exception caught:");
    }
    System.out.println("after try{}catch{}:");
  }
}

重新拋出異常:

class Rethrow {
  public static void genException() {
    int[] numer = {2,4,6,8,10,12};
    int[] demon = {2,0,3,4,0};
      for(int i=0;i < numer.length;i++){
        try {                                   //try代碼塊
          System.out.println(numer[i]/demon[i]);
        } catch (ArithmeticException e) {  //多個catch()塊
          System.out.println("can't dev by zero:");
        }catch(ArrayIndexOutOfBoundsException e) {
          System.out.println("no error:");
          throw e;  //throw 重寫拋出異常
        }
      }
  }
}
public class RethrowDemo{
  public static void main(String args[]) {
    try {
      Rethrow.genException();
    } catch (ArrayIndexOutOfBoundsException e) {  //捕獲重新拋出的異常
      System.out.println("error error error error error:");
    }
    finally{  //finally代碼塊在try catch執行完時執行的。
       System.out.println("Leaving try.");
     }
  }
}

throws語句:一個方法產生自己不做處理的異常,用throws拋出到外層(誰調用,誰處理異常)

public class ThrowsDemo {
  public static char prompt(String str) throws java.io.IOException{//prompt()方法產生自己不做處理的IOException異常,拋出到外層,誰調用誰處理異常
    System.out.print(str +":");
    return (char) System.in.read();
  }
  public static void main(String[] args) {
    char ch;
    try {
      ch = prompt("enter a letter");  //prompt()可能拋出異常,
    } catch (java.io.IOException e) {  //捕獲prompt()拋出的異常
      System.out.println("IOException occurred");
      ch = 'x';
    }
    System.out.println("you pressed:"+ ch);
  }
}

可以用一個catch()捕獲多個異常:

try{

}
catch(ArithmeticException|ArrayIndexOutOfBoundsException e){//同時捕獲多個異常
}

自定義異常:

class NonIntResultException extends Exception{  //自定義異常繼承子Exception
  int n ,d;
  NonIntResultException(int i,int j){
    n = i;
    d = j;
  }
  public String toString() {
    return "result of "+ n +"/"+ d +" is non-integer.";
  }
}
public class CustomExceptionDemo {
  public static void main(String[] args) {
    int numer[] = {4,8,15,32,64,127,256,512};
    int denom[] = {2,0,4,4,0,8};
    for(int i=0;i<numer.length;i++) {
      try {
        if((numer[i]%2)!=0) {
          throw new NonIntResultException(numer[i],denom[i]);  //拋出自定義異常
        }
        System.out.println(numer[i] +"/"+ denom[i] +" is "+ numer[i]/denom[i]);
      } catch (ArithmeticException e) {  //捕獲ArithmeticException異常
        System.out.println("can't divide by zero!");
      }catch (ArrayIndexOutOfBoundsException e) { //捕獲ArrayIndexOutOfBoundsException 異常
        System.out.println("no matching element found.");
      }catch (NonIntResultException e) {  //捕獲自定義異常
        System.out.println(e);
      }
    }
  }
}

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

向AI問一下細節

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

AI

东兴市| 五寨县| 元朗区| 宜君县| 云林县| 南乐县| 临清市| 龙川县| 镇坪县| 泰兴市| 织金县| 花垣县| 万州区| 昆山市| 台南县| 湖北省| 新晃| 定远县| 佛坪县| 乡城县| 招远市| 华池县| 商洛市| 贞丰县| 泰宁县| 阿坝| 宜黄县| 铜陵市| 临猗县| 中超| 洪泽县| 嘉祥县| 五寨县| 黑水县| 万源市| 扶沟县| 化隆| 赣州市| 泽库县| 平南县| 北宁市|