介绍

针对 java.lang.reflect.Type 的工具类封装,最主要功能包括:

  1. 获取方法的参数和返回值类型(包括Type和Class)
  2. 获取泛型参数类型(包括对象的泛型参数或集合元素的泛型类型)

    方法

    首先我们定义一个类:
    1. public class TestClass {
    2. public List<String> getList(){
    3. return new ArrayList<>();
    4. }
    5. public Integer intTest(Integer integer) {
    6. return 1;
    7. }
    8. }

    getClass

    获得Type对应的原始类

    getParamType

    1. Method method = ReflectUtil.getMethod(TestClass.class, "intTest", Integer.class);
    2. Type type = TypeUtil.getParamType(method, 0);
    3. // 结果:Integer.class
    获取方法参数的泛型类型

    getReturnType

    获取方法的返回值类型
    1. Method method = ReflectUtil.getMethod(TestClass.class, "getList");
    2. Type type = TypeUtil.getReturnType(method);
    3. // 结果:java.util.List<java.lang.String>

    getTypeArgument

    获取泛型类子类中泛型的填充类型。
    1. Method method = ReflectUtil.getMethod(TestClass.class, "getList");
    2. Type type = TypeUtil.getReturnType(method);
    3. Type type2 = TypeUtil.getTypeArgument(type);
    4. // 结果:String.class