标签:trace nbsp 实例 不能 stat 静态方法 getname tac this
获取类名:
1、在类的实例中可使用this.getClass().getName();适用于非静态方法,在static method中不能使用该方法;
2、在static method中使用方法:Thread.currentThread().getStackTrace()[1].getClassName();
获取方法名:Thread.currentThread().getStackTrace()[1].getMethodName();
获取代码行号:Thread.currentThread().getStackTrace()[1].getLineNumber();
标签:trace nbsp 实例 不能 stat 静态方法 getname tac this
原文地址:https://www.cnblogs.com/zhaideang/p/12260288.html