Java获取当前类名的两种方法
适用于非静态方法
this.getClass().getName()
适用于静态方法
//获取类名
Thread.currentThread().getStackTrace()[1].getClassName()
//获取方法名
Thread.currentThread().getStackTrace()[1].getMethodName();
//获取行号
Thread.currentThread().getStackTrace()[1].getLineNumber();
一只船孤独地航行在海上,它既不寻求幸福,也不逃避幸福,它只是向前航行,底下是沉静碧蓝的大海,而头顶是金色的太阳。