當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.lang.Throwable.getCause()用法及代碼示例



描述

這個java.lang.Throwable.getCause() 如果原因不存在或未知,則方法返回此 throwable 的原因或 null

聲明

以下是聲明java.lang.Throwable.getCause()方法

public Throwable getCause()

參數

NA

返回值

如果原因不存在或未知,則此方法返回此 throwable 的原因或 null。

異常

NA

示例

下麵的例子展示了 java.lang.Throwable.getCause() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class ThrowableDemo {

   public static void main(String[] args) throws Throwable {

      try {
         newException();
      } catch(Throwable e) {
         System.err.println(e);
         // returns null as the cause is nonexistent or unknown.
         System.err.println("Cause = " + e.getCause());
      }
   }
  
   public static void newException() throws Exception {
      System.out.println("This is newException() function");
      throw new Exception("Exception...");
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果——

This is newException() function
java.lang.Exception:Exception...
Cause = null

相關用法


注:本文由純淨天空篩選整理自 Java.lang.Throwable.getCause() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。