真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯網站制作重慶分公司

JAVA如何通過異常處理錯誤

小編這次要給大家分享的是JAVA如何通過異常處理錯誤,文章內容豐富,感興趣的小伙伴可以來了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。

海口網站制作公司哪家好,找創(chuàng)新互聯公司!從網頁設計、網站建設、微信開發(fā)、APP開發(fā)、響應式網站等網站項目制作,到程序開發(fā),運營維護。創(chuàng)新互聯公司公司2013年成立到現在10年的時間,我們擁有了豐富的建站經驗和運維經驗,來保證我們的工作的順利進行。專注于網站建設就選創(chuàng)新互聯公司。

一、創(chuàng)建自定義異常

package Exception; 
 class SimpleException extends Exception{}
 
 public class InheritingException{
  
  public void f() throws SimpleException {
   System.out.println("Throw SimpleException from f()");
   throw new SimpleException();
  }
  
  public static void main(String[] args) {
   InheritingException sed = new InheritingException();
   try {
    sed.f();
   } catch (SimpleException e) {
    e.printStackTrace();
   }
  }
  
 }

輸出:

Throw SimpleException from f()
Exception.SimpleException
at Exception.InheritingException.f(InheritingException.java:10)
at Exception.InheritingException.main(InheritingException.java:19)

throw與throws的區(qū)別與詳情

編譯器創(chuàng)建了默認構造器,它將自動調用基類的默認構造器。

對異常來說,最重要的部分就是類名,其它也沒用,可以增加一個帶參的構造方法。

比如NullPointerException:

 public class NullPointerException extends RuntimeException {
  private static final long serialVersionUID = 5162710183389028792L;
 
  /**
  * Constructs a {@code NullPointerException} with no detail message.
  */
  public NullPointerException() {
   super();
 }

  /**
  * Constructs a {@code NullPointerException} with the specified
   * detail message.
  *
  * @param s the detail message.
  */
  public NullPointerException(String s) {
   super(s);
  }
 }

二、捕獲異常

1)try塊

如果在方法內部拋出了異常(或者在方法內部調用的其他方法拋出了異常),這個方法將在拋出異常的過程中結束。

要是不希望方法就此結束,可以在方法內設置一個特殊的塊來捕獲異常。

try{
 //exceptions 
}

   2)異常處理程序

異常處理程序緊跟在try塊之后,以關鍵字catch表示:

try{
 //exceptions 
} catch(Type1 id1) {
 //Type1 
} catch(Type2 id2) {
 //Type2
}

當異常被拋出時,異常處理機制將負責搜尋參數與異常類型相匹配的第一個處理程序。然后進入catch子句執(zhí)行,此時認為異常得到了處理。

注意,只有匹配的catch子句才能得到執(zhí)行,這與switch語句不同。

   3)棧軌跡

printStackTrace()方法所提供的信息可以通過getStackTrace()方法來直接訪問,這個方法將返回一個由棧軌跡中的元素所構成的數組,其中每一個元素都表示

棧中的一幀。元素0是棧頂元素,并且是調用序列中的最后一個方法調用。數組中最后一個元素和棧底是調用序列中的第一個方法調用。

 public class WhoCalled {
  static void f() {
   try {
    throw new Exception();
   } catch (Exception e) {
    for(StackTraceElement ste : e.getStackTrace()) {
     System.out.println("line: " + ste.getLineNumber() + " method: " + ste.getMethodName());
    }
   }
  }
  static void g() {f();}
  static void h() {g();}
  public static void main(String[] args) {f();g();h();}
 }

程序輸出:

line: 5 method: f
line: 14 method: main
line: 5 method: f
line: 12 method: g
line: 14 method: main
line: 5 method: f
line: 12 method: g
line: 13 method: h
line: 14 method: main

三、Java標準異常

Throwable這個Java類被用來表示任何可以作為異常被拋出的類。

Throwable對象可分為兩種類型:

1  Error用來表示編譯時和系統(tǒng)錯誤。

2  Exception是可以被拋出的基本類型,程序員關心的基類型通常是Exception。

四、RuntimeException

if(t == null) {
 throw new NullPointerException(); 
}

如果對Null引用進行調用,Java會自動拋出NullPointerException異常,所以上述代碼是多余的,它屬于Java的標準運行時檢測的一部分:

public class NeverCaught {
  static void f() {
   throw new RuntimeException();
  }
  static void g() {f();}
  public static void main(String[] args) {
   g();
  }
 }

輸出:

Exception in thread "main" java.lang.RuntimeException

at Exception.NeverCaught.f(NeverCaught.java:6)

at Exception.NeverCaught.g(NeverCaught.java:10)

at Exception.NeverCaught.main(NeverCaught.java:14)

從輸出可以發(fā)現,RuntimeException是一個特例,對于這種異常類型,編譯器不需要異常說明,其輸出被報告給了System.err。

如果RuntimeException沒有被捕獲而直達main(),那么在程序退出前將調用異常的printStackTrace()方法。

*注意:

只能在代碼中忽略RuntimeException(及其子類)類型的異常,其它異常類型的處理都是由編譯器強制實施的。

1)常見的五種RuntimeException

NullPointerException - 空指針引用異常

ClassCastException - 類型強制轉換異常

IllegalArgumentException - 傳遞非法參數異常

ArithmeticException - 算術運算異常

ArrayStoreException - 向數組中存放與聲明類型不兼容對象異常

IndexOutOfBoundsException - 下標越界異常

NegativeArraySizeException - 創(chuàng)建一個大小為負數的數組錯誤異常

NumberFormatException - 數字格式異常

SecurityException - 安全異常

UnsupportedOperationException - 不支持的操作異常

五、使用finally進行清理

 class ThreeException extends Exception {}
 public class FinallyWorks {
  static int count = 0;
  public static void main(String[] args) {
   while(true) {
    try {
     if(count++ == 0) {
      throw new ThreeException();
     }
     System.out.println("No exception");
    } catch (ThreeException e) {
     System.out.println("ThreeException");
    } finally {
     System.out.println("In finally clause");
     if(count == 2) 
      break;
    }
   }
  }
 }

這個程序給了我們一些思路(確實。。),如果把try塊放在循環(huán)里,就建立了一個“程序繼續(xù)執(zhí)行之前必須要到達”的條件。

還可以加入一個static類型的計數器或者別的裝置,使循環(huán)在放棄之前能夠嘗試一定的次數。這將使程序的健壯性更上一個臺階(好叼的樣子)。

1)finally用來做什么

當要把除內存之外的資源恢復到它們的初始狀態(tài)時,就要用到finally子句。

2)在return中使用finally

因為finally子句總是會執(zhí)行的,所以在一個方法中,可以從多個點返回,并且可以保證重要的清理工作仍舊會執(zhí)行:

class ThreeException extends Exception {}
 public class FinallyWorks {
  static int count = 0;
  public static void main(String[] args) {
   while(true) {
    try {
     if(count++ == 0) {
      throw new ThreeException();
     }
     System.out.println("No exception");
     return;
    } catch (ThreeException e) {
     System.out.println("ThreeException");
    } finally {
     System.out.println("In finally clause");
     if(count == 3) 
      break;
    }
   }
  }
 }

第一次循環(huán),首先執(zhí)行第7行,符合條件,拋出異常,執(zhí)行catch塊,最后執(zhí)行finally清理,不符合第16行判斷,繼續(xù)循環(huán)

第二次循環(huán),不符合第7行判斷,拋出異常,并return,但依舊執(zhí)行finally清理,不符合第16行判斷,但try塊中已經執(zhí)行return,所以程序結束,輸出:

ThreeException
In finally clause
No exception
In finally clause

3)Java異常的缺憾:異常丟失

 public class ExceptionSilencer {
  public static void main(String[] args) {
  try {
    throw new RuntimeException();
   } finally {
    return;
   }
  }
 }

看完這篇關于JAVA如何通過異常處理錯誤的文章,如果覺得文章內容寫得不錯的話,可以把它分享出去給更多人看到。


網頁標題:JAVA如何通過異常處理錯誤
本文鏈接:http://weahome.cn/article/piocdj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部