首頁 > Java > java教程 > 主體

詳解java異常處理實例

Y2J
發布: 2017-04-27 09:49:24
原創
1564 人瀏覽過

這篇文章主要介紹了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異常處理實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!