首頁  >  文章  >  Java  >  Java 實例 - 異常處理方法

Java 實例 - 異常處理方法

黄舟
黄舟原創
2017-02-04 10:21:271265瀏覽

以下實例示範了使用System 類別的System.err.println() 來展示異常的處理方法:

/*
 author by w3cschool.cc
 ExceptionDemo.java
 */class ExceptionDemo{
 public static void main(String[] args) {
   try {
       throw new Exception("My Exception");
   } catch (Exception e) {
       System.err.println("Caught Exception");
       System.err.println("getMessage():" + e.getMessage());
       System.err.println("getLocalizedMessage():"
       + e.getLocalizedMessage());
       System.err.println("toString():" + e);
       System.err.println("printStackTrace():");
       e.printStackTrace();
   }
 }
 }

以上程式碼運行輸出結果為:

Caught Exception
getMessage():My Exception
getLocalizedMessage():My Exception
toString():java.lang.Exception: My Exception
printStackTrace():
java.lang.Exception: My Exception
   at ExceptionDemo.main(ExceptionDemo.java:5)

以上就是Java 實例- 異常處理方法的內容,更多相關內容請關注PHP中文網(www.php.cn)!



陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn