共计 557 个字符,预计需要花费 2 分钟才能阅读完成。
在 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()
可以获取当前方法的方法名。
丸趣 TV 网 – 提供最优质的资源集合!
正文完