java怎么获取一个泛型方法的真实泛型类型
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java怎么获取一个泛型方法的真实泛型类型相关的知识,希望对你有一定的参考价值。
不知道我对你的题目的理解对不对:有个方法返回一个 泛型 ,你想去这个 泛型 的类型是不是?
package test;import java.util.ArrayList;
import java.util.List;
public class Test01
public static void main(String[] args)
List<String> strings = new ArrayList<String>();
strings.add("123");//模拟返回一个泛型
System.out.println(strings.getClass());//第一次取类型
System.out.println(strings.get(0).getClass());//假如通过第一步知道是ArrayList类型,则再取类型
输出结果:
class java.util.ArrayList
class java.lang.String
这里只举例讲一下方法,不知道是不是你想要的,
参考技术A 用gentyref这个工具应该能解决你的问题。?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import com.googlecode.gentyref.GenericTypeReflector;
public class ClassWithGenericMethod
public <T> void chill(List<T> aListWithTypeT)
System.out.println(GenericTypeReflector.getTypeParameter(aListWithTypeT.getClass(), Collection.class.getTypeParameters()[0]));
public void chillWildcard(List<?> aListWithTypeWildcard)
System.out.println(GenericTypeReflector.getTypeParameter(aListWithTypeWildcard.getClass(), Collection.class.getTypeParameters()[0]));
public <T> T chillReturn(Class<T> c)
T ret = null;
try
ret = c.newInstance();
catch (InstantiationException e)
e.printStackTrace();
catch (IllegalAccessException e)
e.printStackTrace();
System.out.println(ret.getClass());
return ret;
public static void main(String... args)
ClassWithGenericMethod cwfm = new ClassWithGenericMethod();
cwfm.chill(new ArrayList<String>());
cwfm.chillWildcard(new ArrayList<Integer>());
cwfm.chillReturn(ClassWithGenericMethod.class);
以上是关于java怎么获取一个泛型方法的真实泛型类型的主要内容,如果未能解决你的问题,请参考以下文章