Java Throwable getCause() 方法



描述

Java Throwable getCause() 方法返回此可抛出对象的根本原因,如果原因不存在或未知,则返回 null。

声明

以下是 java.lang.Throwable.getCause() 方法的声明:

public Throwable getCause()

参数

返回值

此方法返回此可抛出对象的根本原因,如果原因不存在或未知,则返回 null。

异常

示例:获取 Throwable 的初始原因

以下示例演示了 java.lang.Throwable.getCause() 方法的使用。在此程序中,我们定义了一个名为 raiseException() 的方法,在其中定义了一个 Throwable,并使用 initCause() 方法将其初始原因设置为带有消息“ABCD”的可抛出对象。在 main 方法中,调用了 raiseException() 方法。在 catch 块中,我们处理异常并使用 getCause() 方法打印其原因。

package com.tutorialspoint;

public class ThrowableDemo {

   public static void main(String[] args) throws Throwable {
     try {
         raiseException();
      } catch(Throwable e) {
         System.out.println(e.getCause());
      }
   }
  
   public static void raiseException() throws Throwable {

      Throwable t = new Throwable("This is new Exception...");
      t.initCause(new Throwable("ABCD"));
      throw t;
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

java.lang.Throwable: ABCD

示例:获取 RuntimeException 的初始原因

以下示例演示了 java.lang.Throwable.getCause() 方法的使用。在此程序中,我们定义了一个名为 raiseException() 的方法,在其中定义了一个 RuntimeException,并使用 initCause() 方法将其初始原因设置为带有消息“ABCD”的可抛出对象。在 main 方法中,调用了 raiseException() 方法。在 catch 块中,我们处理异常并使用 getCause() 方法打印其原因。

package com.tutorialspoint;

public class ThrowableDemo {

   public static void main(String[] args) throws Throwable {
     try {
         raiseException();
      } catch(Exception e) {
        System.out.println(e.getCause());
      }
   }
  
   public static void raiseException() throws RuntimeException {

      RuntimeException t = new RuntimeException("This is new Exception...");
      t.initCause(new Throwable("ABCD"));
      throw t;
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

java.lang.Throwable: ABCD

示例:获取 Exception 的初始原因

以下示例演示了 java.lang.Throwable.getCause() 方法的使用。在此程序中,我们定义了一个名为 raiseException() 的方法,在其中定义了一个 Exception,并使用 initCause() 方法将其初始原因设置为带有消息“ABCD”的可抛出对象。在 main 方法中,调用了 raiseException() 方法。在 catch 块中,我们处理异常并使用 getCause() 方法打印其原因。

package com.tutorialspoint;

public class ThrowableDemo {

   public static void main(String[] args) throws Throwable {
     try {
         raiseException();
      } catch(Exception e) {
         System.out.println(e.getCause());
      }
   }
  
   public static void raiseException() throws Exception {

      Exception t = new Exception("This is new Exception...");
      t.initCause(new Throwable("ABCD"));
      throw t;
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

java.lang.Throwable: ABCD
java_lang_throwable.htm
广告