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


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



描述

這個java.lang.Throwable.fillInStackTrace() 方法填充執行堆棧跟蹤。此方法在此 Throwable 對象中記錄有關當前線程的堆棧幀的當前狀態的信息。

聲明

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

public Throwable fillInStackTrace()

參數

NA

返回值

此方法返回對此 Throwable 實例的引用。

異常

NA

示例

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

package com.tutorialspoint;

import java.lang.*;

public class ThrowableDemo {

   public static void function1() throws Exception {
      throw new Exception("this is thrown from function1()");
   }

   public static void function2() throws Throwable {
      try {
         function1();
      } catch(Exception e) {
         System.err.println("Inside function2():");
         e.printStackTrace();
         throw e.fillInStackTrace();
      }
   }

   public static void main(String[] args) throws Throwable {
      try {
         function2();
      } catch (Exception e) {
         System.err.println("Caught Inside Main:");
         e.printStackTrace();
      }
   }
}

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

Inside function2():
java.lang.Exception:this is thrown from function1()
at ThrowableDemo.function1(ThrowableDemo.java:4)
at ThrowableDemo.function2(ThrowableDemo.java:9)
at ThrowableDemo.main(ThrowableDemo.java:19)
Caught Inside Main:
java.lang.Exception:this is thrown from function1()
at ThrowableDemo.function2(ThrowableDemo.java:13)
at ThrowableDemo.main(ThrowableDemo.java:19)

相關用法


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