当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.lang.Throwable.getStackTrace()用法及代码示例



描述

这个java.lang.Throwable.getStackTrace() 方法返回一个堆栈跟踪元素数组,每个元素代表一个堆栈帧。数组的第零个元素(假设数组的长度不为零)表示堆栈的顶部,这是序列中的最后一个方法调用。这是创建和抛出此 throwable 的点。

数组的最后一个元素(假设数组的长度不为零)表示堆栈的底部,这是序列中的第一个方法调用。

声明

以下是声明java.lang.Throwable.getStackTrace()方法

public StackTraceElement[] getStackTrace()

参数

NA

返回值

此方法返回一个堆栈跟踪元素数组,表示与此 throwable 相关的堆栈跟踪。

异常

NA

示例

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

package com.tutorialspoint;

import java.lang.*;

public class ThrowableDemo {

   public static void main(String[] args) {

      try {
         ExceptionFunc();
      } catch(Throwable e) {
         // access to the stack trace
         StackTraceElement[] trace = e.getStackTrace();
         System.err.println(trace[0].toString());
      }
   }
  
   public static void ExceptionFunc()throws Throwable {

      Throwable t = new Throwable("This is new Exception...");
      StackTraceElement[] trace = new StackTraceElement[] {
         new StackTraceElement("ClassName","methodName","fileName",15)
      };

      // sets the stack trace elements
      t.setStackTrace(trace);
      throw t;
   }
}

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

ClassName.methodName(fileName:15)

相关用法


注:本文由纯净天空筛选整理自 Java.lang.Throwable.getStackTrace() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。