中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

一文帶你讀懂java中的異常處理

發布時間:2020-11-17 16:13:33 來源:億速云 閱讀:195 作者:Leah 欄目:編程語言

本篇文章為大家展示了一文帶你讀懂java中的異常處理,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

Java異常層次結構

一文帶你讀懂java中的異常處理

Exception異常

RuntimeException與非RuntimeException異常的區別:

非RuntimeException(檢查異常):在程序中必須使用try…catch進行處理,否則程序無法編譯。 
RuntimeException:可以不使用try…catch進行處理,但是如果有異常產生,則異常將由JVM進行處理。
比如:我們從來沒有人去處理過NullPointerException異常,它就是運行時異常,并且這種異常還是最常見的異常之一。
出現運行時異常后,系統會把異常一直往上層拋,一直遇到處理代碼。如果沒有處理塊,到最上層,
如果是多線程就由Thread.run()拋出,如果是單線程就被main()拋出。拋出之后,如果是線程,這個線程也就退出了。
如果是主程序拋出的異常,那么這整個程序也就退出了。

Error類和Exception類的父類都是throwable類,他們的區別是:

Error類一般是指與虛擬機相關的問題,如系統崩潰,虛擬機錯誤,內存空間不足,方法調用棧溢等。
對于這類錯誤的導致的應用程序中斷,僅靠程序本身無法恢復和和預防,遇到這樣的錯誤,建議讓程序終止。 
Exception類表示程序可以處理的異常,可以捕獲且可能恢復。遇到這類異常,應該盡可能處理異常,
使程序恢復運行,而不應該隨意終止異常。

RuntimeException異常

NullPointException異常

一般報Java.lang.NullPointerException的原因有以下幾種:

1. 字符串變量未初始化;
2. 對象沒有用具體的類初始化;

NullPointException代碼如下:

package TestNullPointException;
public class TestNullPointException {
  public static void main (String[] args) {
    String str = null;
    try {
      if (str.equals(null)) {
        System.out.println("true");
      } else {
        System.out.println("false");
      }
    } catch (NullPointException e) {
      e.printStackTrace();
    }
  }
}

輸出:

java.lang.NullPointerException
  at TestNullPointException.TestNullPointException.main(TestNullPointException.java:6)

ArrayIndexOutOfBoundsException異常

數組下標越界異常,當引用的索引值超出數組長度時,就會發生此異常。

ArrayIndexOutOfBoundsException 代碼如下:

package TestArrayIndexOutOfBoundsException;
public class TestArrayIndexOutOfBoundsException {
  public static void main (String[] args) {
    Integer[] array = new Integer[10];
    try {
      Integer temp = array[10];
    } catch (ArrayIndexOutOfBoundsException e) {
      e.printStackTrace();
    }
  }
}

輸出:

java.lang.ArrayIndexOutOfBoundsException: 10
  at TestArrayIndexOutOfBoundsException.TestArrayIndexOutOfBoundsException.main(TestArrayIndexOutOfBoundsException.java:6)

ArithmeticException

ArithmeticException是出現異常的運算條件時,拋出此異常。

ArithmeticException代碼如下:

/**
 * ArithmeticException
 */

 packet TestArithmeticException;
 public class TestArithmeticException {
  public static void main(String[] args) {
    Integer temp = 1;
    try {
      System.out.println(temp/0);
    } catch (ArithmeticException e) {
      e.printStackTrace();
    }
  }
 }

輸出:

java.lang.ArithmeticException: / by zero
  at TestArithmeticException.TestArithmeticException.main(TestArithmeticException.java:6)

ArrayStoreException

當你試圖將錯誤類型的對象存儲到一個對象數組時拋出的異常。

ArrayStoreException代碼如下:

/**
 * ArrayStoreException
 */

 packet TestArrayStoreException;
 public class TestArrayStoreException {
  public static void main(String[] args) {
    Object array = new Integer[10];
    try {
      array[0] = "123";
    } catch (ArrayStoreException e) {
      e.printStackTrace();
    }
  }
 }

輸出:

Exception in thread "main" java.lang.ArrayStoreException: java.lang.String
  at TestArrayStoreException.TestArrayStoreException.main(TestArrayStoreException.java:6)

NumberFormatException

繼承IllegalArgumentException,字符串轉換為數字時出現。

NumberFormatException代碼如下:

/**
 * NumberFormatException
 */
package test;
public class ExceptionTest {
   public static void main(String[] args) { 
      String s = "q12";
      Integer i = Integer.parseInt(s);
   }
 }

輸出:

Exception in thread "main" java.lang.NumberFormatException: For input string: "q12"
  at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
  at java.lang.Integer.parseInt(Integer.java:580)
  at java.lang.Integer.parseInt(Integer.java:615)
  at test.ExceptionTest.main(ExceptionTest.java:8)

ClassCastException

類型轉換錯誤,通常是進行強制類型轉換時候出的錯誤。

ClassCastException代碼如下:

/**
 * ClassCastException 父類賦值給子類,向下轉型
 */
package test;
public class ExceptionTest {
   public static void main(String[] args) { 
     Object obj=new Object();
     Integer s=(Integer)obj;
   }
 }

輸出:

Exception in thread "main" java.lang.ClassCastException: java.lang.Object cannot be cast to java.lang.Integer
  at test.ExceptionTest.main(ExceptionTest.java:5)

上述內容就是一文帶你讀懂java中的異常處理,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

广安市| 新巴尔虎左旗| 安西县| 本溪| 城市| 临城县| 安阳县| 花垣县| 遂平县| 龙泉市| 泾源县| 东兴市| 清河县| 惠东县| 怀柔区| 分宜县| 囊谦县| 霍州市| 西峡县| 宜川县| 手游| 长春市| 五大连池市| 昌吉市| 饶阳县| 北票市| 香河县| 军事| 巴楚县| 桂阳县| 永城市| 南陵县| 望都县| 修文县| 乐安县| 长海县| 都安| 黄梅县| 井陉县| 聂荣县| 沂水县|