次の例は、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 中国語 Web サイト (www.php.cn) に注目してください。