泛型
在JDK5之后,新增了泛型(Generic)语法,让你在设计API时可以指定类或方法支持泛型,这样我们使用API的时候也变得更为简洁,并得到了编译时期的语法检查。
泛型:可以看做是一种未知的数据类型,不知道使用什么数据类型的时候,可以使用泛型
泛型也可以看成是一个变量,用来接收数据类型
E e:Element 元素
T t:Type 类型
3.1 泛型概述
集合可以存放任意对象,只要把对象储存集合后,那么都会被提升为Object类型。
代码如下
/**
创建集合对象,不使用泛型
好处:
集合不使用泛型,默认的类型就是Object类型,可以存储任意类型的数据
弊端:
不安全,会引发异常
*/
public static void main(String[] args){
Collection coll = new ArrayList();
// 集合没有限制 可以存放任意类型
coll.add("abc");
coll.add("itcast");
coll.add(1);
// 使用迭代器 Iterator迭代器,是一个接口,无法直接使用,需要使用Iterator接口的实现类对象,获取实现类的方式比较特殊。
Iterator it = coll.iterator();
while(it.hasNext()){
// 获取元素
Object next = it.next();
System.out.println(next);
// 想要使用string类特有的方法,length获取字符串的长度;不能使用 多态 object obj = "abc"
// 就需要把迭代出来的对象转成String类型
String str = (String) it.next();
System.out.println(it.length());
}
}
程序在运行的时候发生异常
java.lang.ClassCastException。
发生类型转换异常的原因:
由于集合中什么类型的元素都可以存储。导致取出时强转引发运行时 ClassCastException。
Collection集合虽然可以存储各种对象,但实际上只能储存同一类型的对象。
因此在JDK5之后,新增了泛型(Generic)语法,让你在设计API时可以指定类或方法支持泛型,这样我们使用API的时候也变得更为简洁,并得到了编译时期的语法检查。
- 泛型:可以在类或方法中预支地使用未知的类型。
tips:一般在创建对象时,将未知的类型确定具体的类型。当没有指定泛型时,默认类型为Object类型。
3.2 使用泛型的好处
创建集合,使用泛型
好处:
1.避免了类型转换的麻烦,储存的类型固定
2.把运行期异常(代码运行之后会抛出的异常),提升到了编译器(写代码的时候会报错)
弊端:
泛型是什么类型,只能存什么类型
public static void main(String[] args){
Collection<String> list = new ArrayList<>();
list.add("abc");
list.add("iteraton");
// list.add(6); 当集合存储类型确定后,存放的类型不一致就会报错
Iterator<String> it = list.iterator();
while(it.hasNaxt){
String str = it.next();
//当使用Iterator<String>控制元素类型后,就不需要强转了。获取到的元素直接就是String类型
System.out.println(str.length());
}
}
tips:泛型是数据类型的一部分 ,我们将类名与泛型合并一起看做数据类型。
3.3 泛型的定义与使用
泛型,用来灵活的将数据类型应用到不同的类、方法、接口中。将数据类型作为参数进行传递
1.定义和使用含有泛型的类
定义格式:
修饰符 class 类名<代表泛型的变量> { }
例如,API中的ArrayList集合:
class ArrayList<E>{
public boolean add(E e){ }
public E get(int index){ }
....
}
使用泛型: 即什么时候确定泛型。
在创建对象的时候确定泛型
例如,ArrayList<String> list = new ArrayList<String>();
此时,变量E的值就是String类型,那么我们的类型就可以理解为:
class ArrayList<String>{
public boolean add(String e){ }
public String get(int index){ }
...
}
再例如,ArrayList<Integer> list = new ArrayList<Integer>();
此时,变量E的值就是Integer类型,那么我们的类型就可以理解为:
class ArrayList<Integer> {
public boolean add(Integer e) { }
public Integer get(int index) { }
...
}
举例自定义泛型类
public class MyGenericClass<MVP> {
//没有MVP类型,在这里代表 未知的一种数据类型 未来传递什么就是什么类型
private MVP mvp;
public void setMVP(MVP mvp) {
this.mvp = mvp;
}
public MVP getMVP() {
return mvp;
}
}
使用:
public class GenericClassDemo {
public static void main(String[] args) {
// 创建一个泛型为String的类
MyGenericClass<String> my = new MyGenericClass<String>();
// 调用setMVP
my.setMVP("大胡子登登");
// 调用getMVP
String mvp = my.getMVP();
System.out.println(mvp);
//创建一个泛型为Integer的类
MyGenericClass<Integer> my2 = new MyGenericClass<Integer>();
my2.setMVP(123);
Integer mvp2 = my2.getMVP();
}
}
2.定义含有泛型的方法
定义含有泛型的方法:泛型定义在方法的修饰符合返回值类型之间
定义格式:
修饰符 <泛型> 返回值类性 方法名(参数列表(使用泛型)){
方法体;
}
含有泛型的方法,在调用的方法的时候确定泛型的数据类型
传递什么类型的参数,泛型就是什么类型
定义泛型类
public class GenericMethod{
public <M> void method1(M m){
System.out.println(m);
}
// 静态方法
public static <S> void method2(S s){
System.out.println(s);
}
}
定义测试类:
public static void main(String[] args){
// 创建GenericMethod对象
GenericMethod gm = new GenericMethod();
/*
调用含有泛型的方法method01
传递什么类型,泛型就是什么类型
*/
gm.method01("acb");
gm.method01(1);
// 静态方法不建议创建对象
// 直接通过类名.方法名调用
Generic.method02("静态方法");
Generic.method02(123);
}
3.含有泛型的接口
定义格式:
修饰符 interface 接口名<代表泛型的变量>{
}
使用格式:
1.始终不确定泛型的类型,直到创建对象时,确定泛型的类型
例如
定义含有泛型的接口
public interface GenericInterface<I>{
public abstract void method(I i):
}
接口的实现类
/**
* 含有泛型的接口,第一种使用方式:定义接口的实现类,实现接口,指定接口的泛型
* public interface Interctor<E>{
* E next();
* }
* Scanner类实现了Iterator接口,并指定接口的泛型为String,所以重写的next方法默认的就是String
* public final class Scanner implements Iterator<String>{
* public String next(){}
* }</>
* */
public class GenericInterfaceImpl1 implements GenericInterface<String> {
@Override
public void method(String s) {
System.out.println(s);
}
}
测试类
public class Demo04GenericInterface {
public static void main(String[] args) {
GenericInterfaceImpl1 impl1 = new GenericInterfaceImpl1();
impl1.method("abc");
impl1.method("字符串");
}
}
2.定义类时确定泛型的类型
定义含有泛型的接口
public interface GenericInterface<I>{
public abstract void method(I i):
}
接口的实现类
public class GenericInterfaceImpl2<I> implements GenericInterface<I>{
@Override
public void method(I i) {
System.out.println(i);
}
}
测试类
public class Demo04GenericInterface {
public static void main(String[] args) {
GenericInterfaceImpl1<String> impl1 = new GenericInterfaceImpl1();
impl1.method("abc");
impl1.method("字符串");
}
3.4 泛型通配符
当使用泛型类或者接口时,传递的数据中,泛型类型不确定,可以通过通配符<?>表示。但是一旦使用泛型的通配符后,只能使用Object类中的共性方法,集合中元素自身方法无法使用。
1.通配符基本使用
泛型的通配符:不知道使用什么类型来接收的时候,此时可以使用?,?表示未知通配符。
此时只能接受数据,不能往该集合中存储数据。
示例代码:
public static void main(String[] args){
ArrayList<String> list1 = new ArrayList<>();
list1.add("a");
list1.add("b");
// 使用多态写法
Collection<Integer> list2 = new ArrayList<>();
list2.add(1);
list2.add(2);
method(list1);
method(list2);
}
/*
定义一个方法,能遍历所有类型的ArrayList集合
因为不确定ArrayList集合的数据类型,所以使用泛型的通配符?来接收数据类型
注意:
泛型没有继承的概念的
*/
public static void method(Collection<?> list){
// 使用迭代器遍历集合
Iterator<?> it = list.iterator();
while(it.hasNext()){
// it.next()方法,取出的元素是object,可以接受任意的数据类型
Object o = it.next();
System.out.println(o);
}
}
tips:泛型不存在继承关系 Collection