CustomStackTraceElement

CustomStackTraceElement

我想自定义 StackTraceElement class的哈希码。我的问题是如何使用此新的自定义类而不是JVM的默认StackTraceElement类。

最佳答案

我想通过扩展它来定制StackTraceElement类


StackTraceElementfinal,因此无法扩展。

如果您(出于某种原因)想要自定义堆栈跟踪的打印方式,则可以实现一个实用方法,该方法采用Throwable然后使用StackTraceElement中的各种方法来创建自己的布局,例如

public static void printCustomizedTrace(Throwable t) {
   for(StackTraceElement e : t.getStackTrace()) {
      System.err.println(" => " + e.getFileName() + ":" + e.getLineNumber());
   }
}


您还可以使用委托并创建CustomStackTraceElements的列表,并在hashmap()类中实现其他逻辑(例如不同的CustomStackTraceElement):

public static List<CustomStackTraceElement> getCustomizedStackTrace(Throwable t) {
   List<CustomStackTraceElement> result = new ArrayList<>();

   for(StackTraceElement e : t.getStackTrace()) {
      result.add(new CustomStackTraceElement(e));
   }

   return result;
}

10-07 12:45