位置:首页 > Java技术 > java.lang > java.lang.Throwable.fillInStackTrace()方法实例

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.yiibai;

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)