Java的泛型反射

Posted winters1992

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java的泛型反射相关的知识,希望对你有一定的参考价值。

If the superclass is a parameterized type, the {@code Type}
     * object returned must accurately reflect the actual type
     * parameters used in the source code. T

上文档DOC,如果父类是一个参数化类型,那么Type返回的是参数类型的真实类型

 

package entity;


import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;

/**
 * Created by Administrator on 2016/11/27 0027.
 */
public class BaseDaoImpl<T> implements BaseDao<T> {

    public BaseDaoImpl(){
        Type type = getClass().getGenericSuperclass();
        Type[] params = ((ParameterizedType)type).getActualTypeArguments();
        System.out.println((Class<T>)params[0]);
    }

    public T findByid(int id) {
        return null;
    }
}
package entity;

/**
 * Created by Administrator on 2016/11/27 0027.
 */
public class UserDaoImpl extends BaseDaoImpl<User> {
}
package entity;

/**
 * Created by Administrator on 2016/11/27 0027.
 */
public interface BaseDao<T> {
   public T findByid(int id);
}
package entity;

import org.junit.Test;

/**
 * Created by Administrator on 2016/11/27 0027.
 */
public class GenericTest {
    @Test
    public void testGeneric(){
        UserDaoImpl baseDao = new UserDaoImpl();
        //BaseDaoImpl<User> baseDao1 = new BaseDaoImpl<User>();
    }
}

 

记录总结,只有继承的父类为参数化类型,此时反射的

ParameterizedType 才能拿到参数类型

以上是关于Java的泛型反射的主要内容,如果未能解决你的问题,请参考以下文章

Java的泛型反射

Java之反射机制六:获取方法的泛型信息

C#关于反射创建泛型类

Java的泛型

java 如何获得List的泛型类型

什么意思 在HashMap之前 ? Java中的泛型[重复]