在Java中,可以通过反射的方式来获取当前方法的方法名。以下是一个示例代码:
import java.lang.reflect.Method;
public class Main {
public static void main(String[] args) {
try {
Method method = Main.class.getDeclaredMethod("getCurrentMethodName");
System.out.println("当前方法名为: " + method.getName());
} catch (NoSuchMethodException e) {
e.printStackTrace();
}
}
public static void getCurrentMethodName() {
// 获取当前方法名
System.out.println("调用方法:" + new Object(){}.getClass().getEnclosingMethod().getName());
}
}
在上面的示例中,通过调用getCurrentMethodName
方法来获取当前方法的方法名。通过new Object(){}.getClass().getEnclosingMethod().getName()
可以获取当前方法的方法名。