ホームページ >Java >&#&チュートリアル >Java における getCause() メソッドの重要性は何ですか?

Java における getCause() メソッドの重要性は何ですか?

WBOY
WBOY転載
2023-09-15 21:05:02925ブラウズ

Java における getCause() メソッドの重要性は何ですか?

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 サイトの他の関連記事を参照してください。

声明:
この記事はtutorialspoint.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。