泛型
在类(接口)定义的时候,还不能明确具体的类型。
在使用的时候才明确类型,这个叫做泛型。
泛型只能是引用类型,如果需要使用到基本数据类型,实际要用到的是包装类型。
int--->Integer char--->Character double--->Double short--->Short long--->Long byte--->byte
如 1.toString() 不能通过,而Integer.toString(1)可以。
Integer b=10; 反编译查看是Integer b=Integer.valueOf(10);这叫自动装箱
泛型类
单个参数的泛型类
class 类名<泛型类型>{
}
多个参数的泛型类型
class 类名<泛型类型1,泛型类型2>{
}
class Person<M,N>{ }
泛型类继承的时候:
1.在继承的时候就指明了泛型类型
class Chinese extends Person<String,Integer>{ }
2.在继承的时候不指名泛型类型
class Chinese<M,N> extends Person<M,N>{ }
在实例化的时候才指明泛型类型。
Chinese<String,Integer> chinese=new Chinese<String,Integer>();
方法2更实用。
泛型接口
语法:
interface 接口名<T> {}
interface 接口名<M,N> {}
实现语法:
1.class 类名 implements 接口名<具体的泛型类型>{}
2.class 类名<T> implements 接口名<T> {}
等到具体实例化的时候再指定泛型类型
泛型方法
语法:public <T> void 方法名(T t){
}
使用泛型方法,可以将类型的指定放在方法调用的时候。
泛型的限制
class 类名<T extends Car>{
}
这里T必须是Car或其子类
泛型通配符
?代表通配符,可以是任意类型
List<? extends Car> list3=new ArrayList<Car>();
? extends Car:代表此泛型类型必须是Car或其子类
List<? super Phoenix> list=new ArrayList<Bike>();
? super Phoenix:代表此泛型类型必须是Phoenix或其父类