码迷,mamicode.com
首页 > 其他好文 > 详细

获取当前运行的类名或者方法

时间:2014-11-14 15:26:41      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:as   new   c   方法   return   class   public   rac   string   

public static String getCurrentMethodName() {
int level = 1;
StackTraceElement[] stacks = new Throwable().getStackTrace();
String methodName = stacks[level].getMethodName();
return methodName;
}

public static String getCurrentClassName() {
int level = 1;
StackTraceElement[] stacks = new Throwable().getStackTrace();
String className = stacks[level].getClassName();
return className;
}

获取当前运行的类名或者方法

标签:as   new   c   方法   return   class   public   rac   string   

原文地址:http://www.cnblogs.com/shortboy/p/4097272.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!