如何获取 Java 8 方法参考的方法信息?
2022-08-31 11:11:27
请看下面的代码:
Method methodInfo = MyClass.class.getMethod("myMethod");
这有效,但方法名称作为字符串传递,因此即使myMethod不存在,这也将编译。
另一方面,Java 8 引入了一个方法参考功能。它在编译时进行检查。是否可以使用此功能来获取方法信息?
printMethodName(MyClass::myMethod);
完整示例:
@FunctionalInterface
private interface Action {
void invoke();
}
private static class MyClass {
public static void myMethod() {
}
}
private static void printMethodName(Action action) {
}
public static void main(String[] args) throws NoSuchMethodException {
// This works, but method name is passed as a string, so this will compile
// even if myMethod does not exist
Method methodInfo = MyClass.class.getMethod("myMethod");
// Here we pass reference to a method. It is somehow possible to
// obtain java.lang.reflect.Method for myMethod inside printMethodName?
printMethodName(MyClass::myMethod);
}
换句话说,我希望有一个代码,它相当于下面的C#代码:
private static class InnerClass
{
public static void MyMethod()
{
Console.WriteLine("Hello");
}
}
static void PrintMethodName(Action action)
{
// Can I get java.lang.reflect.Method in the same way?
MethodInfo methodInfo = action.GetMethodInfo();
}
static void Main()
{
PrintMethodName(InnerClass.MyMethod);
}