java代码获取当前类类名、方法名

//类名
String clazz = this.getClass().getName();
//线程类名
String clazz = Thread.currentThread().getStackTrace()[1].getClassName();
//线程方法名
String method = Thread.currentThread().getStackTrace()[1].getMethodName();

你可能感兴趣的:(java代码获取当前类类名、方法名)