请看下面的代码:
Method methodInfo = MyClass.class.getMethod("myMethod");
这可以工作,但是方法名称是以字符串的形式传递的,因此即使 myMethod 不存在,它也会编译。
另一方面,Java8引入了一个方法引用特性。它在编译时被检查。有可能使用这个特性来获得方法信息吗?
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);
}