适用于非静态方法
this.getClass().getName()
适用于静态方法
//获取类名Thread.currentThread().getStackTrace()[1].getClassName()//获取方法名Thread.currentThread().getStackTrace()[1].getMethodName();//获取行号Thread.currentThread().getStackTrace()[1].getLineNumber();