Java中获取当前函数名、类名、当前类的文件名
Java中获取当前函数名、类名、当前类的文件名方法一:getClass()获取当前类名:String clazz = this。getClass()。getName();方法二(JDK 5):Thre
Java中获取当前函数名、类名、当前类的文件名