Using java.lang.reflect.getMethod with polymorphic methods(将 java.lang.reflect.getMethod 与多态方法一起使用)
问题描述
考虑以下代码段:
public class ReflectionTest {
public static void main(String[] args) {
ReflectionTest test = new ReflectionTest();
String object = new String("Hello!");
// 1. String is accepted as an Object
test.print(object);
// 2. The appropriate method is not found with String.class
try {
java.lang.reflect.Method print
= test.getClass().getMethod("print", object.getClass());
print.invoke(test, object);
} catch (Exception ex) {
ex.printStackTrace(); // NoSuchMethodException!
}
}
public void print(Object object) {
System.out.println(object.toString());
}
}
getMethod()
显然不知道可以将 String
提供给需要 Object
的方法(实际上,文档中说它会查找 具有指定名称和完全相同的形参类型的方法).
getMethod()
is obviously unaware that a String
could be fed to a method that expects an Object
(indeed, it's documentation says that it looks for method with the specified name and exactly the same formal parameter types).
是否有一种直接的方法可以像 getMethod()
那样通过反射找到方法,但要考虑多态性,以便上面的反射示例可以找到 print(Object)使用
("print", String.class)
参数查询时的 code> 方法?
Is there a straightforward way to find methods reflectively, like getMethod()
does, but taking polymorphism into account, so that the above reflection example could find the print(Object)
method when queried with ("print", String.class)
parameters?
推荐答案
反思教程
建议使用 Class.isAssignableFrom()
示例来查找 print(String)
suggest the use of Class.isAssignableFrom()
sample for finding print(String)
Method[] allMethods = c.getDeclaredMethods();
for (Method m : allMethods) {
String mname = m.getName();
if (!mname.startsWith("print") {
continue;
}
Type[] pType = m.getGenericParameterTypes();
if ((pType.length != 1)
|| !String.class.isAssignableFrom(pType[0].getClass())) {
continue;
}
}
这篇关于将 java.lang.reflect.getMethod 与多态方法一起使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将 java.lang.reflect.getMethod 与多态方法一起使用
基础教程推荐
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 在螺旋中写一个字符串 2022-01-01