异常栈轨迹

来源:互联网 发布:淘宝有没有岛国动作片 编辑:程序博客网 时间:2024/06/08 14:29
// Programmatic access to stack trace information.public class WhoCalled {  static void f() {    // Generate an exception to fill in the stack trace    try {      throw new Exception();    } catch (Exception e) {      for(StackTraceElement ste : e.getStackTrace())        System.out.println(ste.getMethodName());    }  }  static void g() { f(); }  static void h() { g(); }  public static void main(String[] args) {    f();    System.out.println("--------------------------------");    g();    System.out.println("--------------------------------");    h();  }} /* Output:fmain--------------------------------fgmain--------------------------------fghmain*///:~

原创粉丝点击