java基础学习笔记之泛型
泛型
将集合中的元素限定为一个特定的类型。
术语
- arraylist<e> -- 泛型类型
- arraylist -- 原始类型
- e -- 类型参数
- <> -- 读作"typeof"
- arraylist<integer> -- 参数化的类型
-
integer -- 实际类型参数
几点注意:
参数化类型和原始类型相互兼容
arraylist collection1 = new arraylist<integer>();//通过,无warning arraylist<integer> collection2 = new arraylist();//通过,有warning
参数化类型不考虑类型参数的继承关系
arraylist<string> collection3 = new arraylist<object>();//编译不通过 arraylist<object> collection4 = new arraylist<string>();//编译不通过
但是
arraylist collection5 = new arraylist<integer>(); arraylist<string> collection6 = collection5;//编译通过
"?"通配符
"?"表示任意类型,使用"?"通配符可以引用各种参数化的类型,可以调用与参数化无关的方法(如size()方法),不能调用与参数化有关的方法(如add()方法)
通配符的扩展
限定通配符的上边界
arraylist<? extends number > collection1= new arraylist<integer >();//编译通过 arraylist<? extends number > collection2= new arraylist<string>();//编译不通过
限定通配符的下边界
arraylist<? super integer > collection3= new arraylist<number >();//编译通过 arraylist<? super integer > collection4= new arraylist<string>();//编译不通过
自定义泛型方法
c++模板函数
template <class t> t add(t x, t y){ return (t)(x+y); }
而java的泛型基本上完全在编译器中实现,用于编译器执行类型检查和类型判断,然后生成普通的非泛型的字节码,这种实现技术为“擦除”(erasure)。
"擦除"实例
泛型是提供给javac编译器使用的,限定集合的输入类型,编译器编译带类型说明的集合时会去掉“类型”信息。
public class generictest { public static void main(string[] args) { new generictest().testtype(); } public void testtype(){ arraylist<integer> collection1 = new arraylist<integer>(); arraylist<string> collection2= new arraylist<string>(); system.out.println(collection1.getclass()==collection2.getclass()); //两者class类型一样,即字节码一致 system.out.println(collection2.getclass().getname()); //class均为java.util.arraylist,并无实际类型参数信息 } }
输出
true
java.util.arraylist
使用反射可跳过编译器,往某个泛型集合加入其它类型数据。
只有引用类型才能作为泛型方法的实际参数 例子:
public class generictest { public static void main(string[] args) { swap(new string[]{"111","222"},0,1);//编译通过 //swap(new int[]{1,2},0,1); //编译不通过,因为int不是引用类型 swap(new integer[]{1,2},0,1);//编译通过 } /*交换数组a 的第i个和第j个元素*/ public static <t> void swap(t[]a,int i,int j){ t temp = a[i]; a[i] = a[j]; a[j] = temp; } }
但注意基本类型有时可以作为实参,因为有自动装箱和拆箱。 例子(编译通过了):
public class generictest { public static void main(string[] args) { new generictest().testtype(); int a = biggerone(3,5); //int 和 double,取交为number number b = biggerone(3,5.5); //string和int 取交为object object c = biggerone("1",2); } //从x,y中返回y public static <t> t biggerone(t x,t y){ return y; } }
同时,该例还表明,当实参不一致时,t取交集,即第一个共同的父类。 另外,如果用number b = biggerone(3,5.5);改为string c = biggerone(3,5.5);则编译报错:
error:(17, 29) java: 不兼容的类型: 推断类型不符合上限
推断: java.lang.number&java.lang.comparable<? extends java.lang.number&java.lang.comparable<?>>
上限: java.lang.string,java.lang.object
但是有一点没搞清楚,我在idea里面单步调试,发现结果如下图: 泛型调试截图-1 不知道b为什么是double类型的(但直接double b接收返回值会编译报错)。不知道跟ide有没有关系,是不是ide在debug时会显示这个对象最精确的类型?
类型参数的类型推断
编译器判断泛型方法的实际类型参数的过程称为类型推断。
当某个类型变量只在整个参数列表的所有参数和返回值中的一处被应用了,那么根据调用方法时该处的实际应用类型来确定。即直接根据调用方法时传递的参数类型或返回值来决定泛型参数的类型。 例如:
swap(new string[3],1,2) -> static <e> void swap(e[]a,int i,int j)
当某个类型变量在整个参数列表的所有参数和返回值中的多处被应用了,如果调用方法时这么多处的实际应用类型都 对应同一种类型,则泛型参数的类型就是该类型。 例如:
add(3,5) -> static <t> t add(t a,t b)
当某个类型变量在整个参数列表的所有参数和返回值中的*多处被应用了,如果调用方法时这么多处的实际应用类型 对应不同的类型,且没有返回值,则取多个参数中的最大交集类型,即第一个公共父类。 例如:
fill(new integer[3],3.5) -> static <t> void fill(t a[],t v)
该例子实际对应的类型就是number,编译通过,运行出问题。
当某个类型变量在整个参数列表的所有参数和返回值中的多处被应用了,如果调用方法时这么多处的实际应用类型对应不同的类型,且使用有返回值,则优先考虑返回值的类型
例如:
int x = add(3,3.5) -> static <t> t add(t a,t b)
上例编译报错,x类型改为float也报错,改为number成功。
参数类型的类型推断具有传递性
例子:
copy(new integer[5],new string[5]) -> static <t> void copy(t []a,t []b)
该例推断实际参数类型为object,编译通过.
copy(new arraylist<string>,new integer[5]) -> static <t> void copy(collection<t>a,t[]b)
该例则根据参数化的arraylist类实例将类型变量直接确定为string类型,编译报错。
自定义泛型类
例子
public class genericdao<t>{ public void add(t x){ } public t findbyid(int id){ return null; } public void delete(t obj){ } public void delete(int id){ } public void update(t obj){ } public t findbyusername(string name){ return null; } public <t> set<t> findbyconditions(string where){ return null; } }
注意:当一个变量被声明为泛型时,只能被实例变量和方法调用(还有内嵌类型),而不能被静态变量和静态方法调用。因为静态成员是被所参数化的类所共享的,所以静态成员不应该有类级别的类型参数。
泛型方法和泛型类的比较
例子:
public class a<t>(){ //泛型类的成员方法,该t受a后面的t的限制 public t memberfunc(){ return null; } //泛型方法,这里的t和和类a的t是不同的 public static <t> t genericfunc(t a){ return null; } public static void main(string[] args) { //编译不通过 //integer i = a<string>().findbyusername("s"); //编译通过 set<integer> set= a<string>().findbyconditions("s"); } }
这里integer i = a<string>().findbyusername("s");会编译报错:
error:(35, 61) java: 不兼容的类型: java.lang.string无法转换为java.lang.integer
由这个例子可知,泛型方法的t和和类a的t是不同的。
泛型和反射
通过反射获得泛型的实际类型参数
把泛型变量当成方法的参数,利用method类的getgenericparametertypes方法来获取泛型的实际类型参数 例子:
public class generictest { public static void main(string[] args) throws exception { getparamtype(); } /*利用反射获取方法参数的实际参数类型*/ public static void getparamtype() throws nosuchmethodexception{ method method = generictest.class.getmethod("applymap",map.class); //获取方法的泛型参数的类型 type[] types = method.getgenericparametertypes(); system.out.println(types[0]); //参数化的类型 parameterizedtype ptype = (parameterizedtype)types[0]; //原始类型 system.out.println(ptype.getrawtype()); //实际类型参数 system.out.println(ptype.getactualtypearguments()[0]); system.out.println(ptype.getactualtypearguments()[1]); } /*供测试参数类型的方法*/ public static void applymap(map<integer,string> map){ } }
输出结果:
java.util.map<java.lang.integer, java.lang.string> interface java.util.map class java.lang.integer class java.lang.string
推荐阅读