54powerman
最初碰到这个问题,首先想到的是getClass()方法,如下尝试:
public static String getClassName()
{
String className=null;
className=this.getClass().getName();//静态方法中不可访问变量 this
return className;
}
结果失败。
偶然发现有人利用异常处理可以获得,真是另辟蹊径,巧妙的很。
public static String getClassName()
{
String className=null;
try {
throw new Exception();
} catch (Exception e) {
StackTraceElement[] element=e.getStackTrace();
className=element[0].getClassName();
}
return className;
}
记录下来备用。
时间: 2024-10-27 00:26:03