听起来你只需要使用而不是.getDeclaredMethod
的全部意义在于,它只查找在调用它的类中声明的方法:getMethod
getDeclaredMethod
返回一个 Method 对象,该对象反映由此类对象表示的类或接口的指定声明方法。
而 getMethod
具有:
在 C 中搜索任何匹配的方法。如果未找到匹配方法,则在 C 的超类上以递归方式调用步骤 1 的算法。
不过,这只会找到公共方法。如果您要查找的方法不是公共的,则应自己递归类层次结构,使用或对层次结构中的每个类进行递归:getDeclaredMethod
getDeclaredMethods
Class<?> clazz = plugin.getClass();
while (clazz != null) {
Method[] methods = clazz.getDeclaredMethods();
for (Method method : methods) {
// Test any other things about it beyond the name...
if (method.getName().equals("getFile") && ...) {
return method;
}
}
clazz = clazz.getSuperclass();
}