Java 获取泛型的类型实例详解
程序员文章站
2023-12-21 13:49:16
java 获取泛型的类型实例详解
java 泛型实际上有很多缺陷,比如不能直接获取泛型的类型,不能获取带泛型类等。
以下方式是不正确的:
①.获取带泛型的类的类型...
java 获取泛型的类型实例详解
java 泛型实际上有很多缺陷,比如不能直接获取泛型的类型,不能获取带泛型类等。
以下方式是不正确的:
①.获取带泛型的类的类型
class lstuclazz = list<user>.class
②获取局部变量泛型的类型
list<user> listuser = new arraylist<user>(); type gentype = listuser.getclass().getclass().getgenericsuperclass(); class templatclazz = null; if(parameterizedtype.class.isinstance(gentype) { //无法获取到user类,或者可能获取到错误的类型,如果有同名且不带包名的泛型存在 parameterizedtype parameterizedtype = (parameterizedtype) gentype; templatclazz = (class) parameterizedtype.getactualtypearguments()[0]; }
那么,如何才能获取到泛型的类型
①.必须具有真实类型的存在
②.泛型的类型是明确的如(list<user>是明确的,list<t>是不明确的)
满足以上两点,我们就可以获取泛型的类型了
1.通过继承方式,明确类型,然后获取泛型类
public abstract class jdbcdaosupport<t> { protected jdbcdaosupport() { } public class gettempaltetype() { class<t> clazz = (class<t>) ((parameterizedtype) getclass() .getgenericsuperclass()).getactualtypearguments()[0]; return clazz; } } public class userdao extends jdbcdaosupport<user> { } public class test{ public static void main(string[] args) { userdao dao = new userdao(); class clazz = dao.gettemplatetype(); system.out.println(clazz.getname()); //输出 xxx.xxx.user } }
2.获取类属性的泛型类型
public class test extends classa<string> { private list<string> list; private map<string, object> map; /*** * 获取list中的泛型 */ public static void testlist() throws nosuchfieldexception, securityexception { type t = test.class.getdeclaredfield("list").getgenerictype(); if (parameterizedtype.class.isassignablefrom(t.getclass())) { for (type t1 : ((parameterizedtype) t).getactualtypearguments()) { system.out.print(t1 + ","); } system.out.println(); } } /*** * 获取map中的泛型 */ public static void testmap() throws nosuchfieldexception, securityexception { type t = test.class.getdeclaredfield("map").getgenerictype(); if (parameterizedtype.class.isassignablefrom(t.getclass())) { for (type t1 : ((parameterizedtype) t).getactualtypearguments()) { system.out.print(t1 + ","); } system.out.println(); } } public static void main(string args[]) throws exception { system.out.println(">>>>>>>>>>>testlist>>>>>>>>>>>"); testlist(); system.out.println("<<<<<<<<<<<testlist<<<<<<<<<<<\n"); system.out.println(">>>>>>>>>>>testmap>>>>>>>>>>>"); testmap(); system.out.println("<<<<<<<<<<<testmap<<<<<<<<<<<\n"); system.out.println(">>>>>>>>>>>testclassa>>>>>>>>>>>"); new test().testclassa(); system.out.println("<<<<<<<<<<<testclassa<<<<<<<<<<<"); } }
3.获取局部变量的泛型的类型
list<user> lst = new arraylist<user>(){}; type gentype = listuser.getclass().getclass().getgenericsuperclass(); class templatclazz = null; if(parameterizedtype.class.isinstance(gentype) { parameterizedtype parameterizedtype = (parameterizedtype) gentype; templatclazz = (class) parameterizedtype.getactualtypearguments()[0]; }
实际上,我们发现,能获取到泛型的类型实际上都是进行了“继承”。当然如果能熟练运用上述技巧,可以做很多事情,比如开源项目gson中的typetoken就是利用上述技巧,实现json与复杂类型的转换的。
很多情况下,class被用来当作参数,我们其实可以将带泛型的类作为参数传入
我们一般为了方便,很少去特定定义一个类,因此,我们需要使用如下方式了。
class clz = new arraylist<user>(){}.getclass();
例子
class jsontoobjectutil { public static <t> t jsontoobject(class<t> clz,list<string> jsonlist){ type gentype = clz.getclass().getgenericsuperclass(); class templatclazz = null; if(parameterizedtype.class.isinstance(gentype)); { parameterizedtype parameterizedtype = (parameterizedtype) gentype; templatclazz = (class) parameterizedtype.getactualtypearguments()[0]; } list<object> lst = new arraylist<object>(); /*****/ if(templatclazz!=null && jsonlist!=null) { for (string str : jsonlist) { gson gson = new gson(); object fromjson = gson.fromjson(str, templatclazz); lst.add(fromjson); } } /*****/ return (t) lst; } public static void main(string[] args) { list<string> jsonlist = null; //略去一部分填充jsonlist的逻辑 class superclazz = new arraylist<user>(){}.getclass(); list jsontoobject = jsontoobjectutil.jsontoobject(superclazz, jsonlist); } }
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!