我已经浏览了StackOverflow,找到了我面临的问题的答案。我遇到了许多好的答案,但它仍然没有回答我的问题。
Get type of a generic parameter in Java with reflection
How to find the parameterized type of the return type through inspection?
Java generics: get class of generic method's return type
http://qussay.com/2013/09/28/handling-java-generic-types-with-reflection/
http://gafter.blogspot.com/search?q=super+type+token
所以这就是我想要做的。
使用Reflection,我想获取所有方法及其返回类型(非泛型)。
我一直在使用Introspector.getBeanInfo
这样做。但是当我遇到一个返回类型未知的方法时,我遇到了限制。
public class Foo {
public String name;
public String getName() {
return name;
}
public void setName(final String name) {
this.name = name;
}
}
public class Bar<T> {
T object;
public T getObject() {
return object;
}
public void setObject(final T object) {
this.object = object;
}
}
@Test
public void testFooBar() throws NoSuchMethodException, SecurityException, IllegalAccessException,
IllegalArgumentException, InvocationTargetException {
Foo foo = new Foo();
Bar<Foo> bar = new Bar<Foo>();
bar.setObject(foo);
Method mRead = bar.getClass().getMethod("getObject", null);
System.out.println(Foo.class);// Foo
System.out.println(foo.getClass());// Foo
System.out.println(Bar.class);// Bar
System.out.println(bar.getClass());// Bar
System.out.println(mRead.getReturnType()); // java.lang.Object
System.out.println(mRead.getGenericReturnType());// T
System.out.println(mRead.getGenericReturnType());// T
System.out.println(mRead.invoke(bar, null).getClass());// Foo
}
如何知道方法返回类型T
是否通用?
我没有在运行时拥有对象的奢侈。
我正在尝试使用Google TypeToken
或使用抽象类来获取类型信息。
我想将T
与Foo
的{{1}}方法联系起来getObject
。
有些人认为java不保留通用信息。在这种情况下,为什么第一次铸造工作和第二次铸造没有。
Bar<Foo>
感谢任何帮助。
答案 0 :(得分:2)
Bar<Foo> bar = new Bar<Foo>();
Method mRead = bar.getClass().getMethod( "getObject", null );
TypeToken<Bar<Foo>> tt = new TypeToken<Test.Bar<Foo>>() {};
Invokable<Bar<Foo>, Object> inv = tt.method( mRead );
System.out.println( inv.getReturnType() ); // Test$Foo
也许这就是你要找的东西。 TypeToken和Invokable来自Google Guava。
€:修正了关于@PaulBellora
注释的代码