以下是案例,已运行通过 package com.hdys; /* * 1.获取当前运行代码的类名,方法名,主要是通过java.lang.StackTraceElement类 * * 2. * [1]获得调用者的方法名, 同new Throwable * String _methodName = new Exception().getStackTrace()[1].getMethodName(); * [0]获得当前的方法名, 同new Throwable * String _thisMethod…