java 获取调用类的类名和方法名

2020-12-29 20:28

阅读:720

标签:out   for   sys   classname   gets   stack   tst   throwable   调用   

java 获取调用类的类名和方法名


String classname = new Exception().getStackTrace()[1].getClassName(); //获取调用者的类名  
  
String method_name = new Exception().getStackTrace()[1].getMethodName(); //获取调用者的方法名  

 

    StackTraceElement[] stacks = (new Throwable()).getStackTrace();
      for (StackTraceElement stack : stacks) {
        System.out.println(stack.getClassName() + "-" + stack.getMethodName());
      }

 

java 获取调用类的类名和方法名

标签:out   for   sys   classname   gets   stack   tst   throwable   调用   

原文地址:https://www.cnblogs.com/zouhao/p/13024221.html

上一篇:Python模块之pysnooper

下一篇:python总结


评论


亲,登录后才可以留言!