getCause() メソッドは Throwable クラスから取得されており、このメソッドを使用して reason を返すことができます。 Exception または は null を返します (例外の原因が不明な場合)。 getCause() このメソッドはパラメータを受け入れず、例外もスローしません。これは、コンストラクターの 1 つによって提供された原因、または Throwable クラスの initCause() メソッドの形成によって決定された原因を返します。
public Throwable getCause()
public class GetCauseMethodTest { public static void main(String[] args) throws Exception { try { myException(); } catch(Exception e) { System.out.println("Cause = " + e.getCause()); } } public static void myException() throws Exception { int arr[] = {1, 3, 5}; try { System.out.println(arr[8]); } catch(ArrayIndexOutOfBoundsException aiobe) { Exception e = new Exception(); throw(Exception); <strong>/</strong>/ throwing the exception to be caught by catch block in main() e.initCause(aiobe); // supplies the cause to getCause() } } }
Cause = java.lang.ArrayIndexOutOfBoundsException: 8
以上がJava における getCause() メソッドの重要性は何ですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。