java.lang.Throwable.getCause()方法實例
java.lang.Throwable.getCause() 方法返回此拋出或空的原因,如果原因不存在或未知
聲明
以下是java.lang.Throwable.getCause()方法的聲明
public Throwable getCause()
參數
-
NA
返回值
此方法返回此拋出或空的原因,如果原因不存在或未知。
異常
-
NA
例子
下麵的例子顯示java.lang.Throwable.getCause()方法的使用。
package com.yiibai; 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