我们在集合中会大量使用到泛型,这里来完整地学习泛型知识。
泛型,用来灵活地将数据类型应用到不同的类、方法、接口当中。将数据类型作为参数进行传递。
定义和使用含有泛型的类
定义格式:
1
| 修饰符 class 类名<代表泛型的变量> { }
|
例如,API中的ArrayList集合:
1 2 3 4 5 6
| class ArrayList<E>{ public boolean add(E e){ }
public E get(int index){ } .... }
|
使用泛型: 即什么时候确定泛型。在创建对象的时候确定泛型
例如,ArrayList<String> list = new ArrayList<String>();
此时,变量E的值就是String类型了, 那么我们的类型就可以理解为:
1 2 3 4 5 6
| class ArrayList<String>{ public boolean add(String e){ }
public String get(int index){ } ... }
|
再例如,ArrayList<Integer> list = new ArrayList<Integer>();
此时,变量E的值就是Integer类型,那么我们的类型就可以理解为:
1 2 3 4 5 6
| class ArrayList<Integer> { public boolean add(Integer e) { }
public Integer get(int index) { } ... }
|
2.举例自定义泛型类
1 2 3 4 5 6 7 8 9 10 11 12
| public class MyGenericClass<MVP> { private MVP mvp; public void setMVP(MVP mvp) { this.mvp = mvp; } public MVP getMVP() { return mvp; } }
|
使用:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| public class GenericClassDemo { public static void main(String[] args) { MyGenericClass<String> my = new MyGenericClass<String>(); my.setMVP("大胡子登登"); String mvp = my.getMVP(); System.out.println(mvp); MyGenericClass<Integer> my2 = new MyGenericClass<Integer>(); my2.setMVP(123); Integer mvp2 = my2.getMVP(); } }
|
含有泛型的方法
定义格式:
1
| 修饰符 <代表泛型的变量> 返回值类型 方法名(参数) { }
|
例如,
1 2 3 4 5 6 7 8 9
| public class MyGenericMethod { public <MVP> void show(MVP mvp) { System.out.println(mvp.getClass()); } public <MVP> MVP show2(MVP mvp) { return mvp; } }
|
使用格式:调用方法时,确定泛型的类型
1 2 3 4 5 6 7 8 9 10
| public class GenericMethodDemo { public static void main(String[] args) { MyGenericMethod mm = new MyGenericMethod(); mm.show("aaa"); mm.show(123); mm.show(12.45); } }
|
含有泛型的接口
定义格式:
1
| 修饰符 interface 接口名<代表泛型的变量> { }
|
例如,
1 2 3 4 5
| public interface MyGenericInterface<E>{ public void add(E e); public E getE(); }
|
使用格式:
1、定义类时确定泛型的类型
例如:
1 2 3 4 5 6 7 8 9 10 11
| public class MyImp1 implements MyGenericInterface<String> { @Override public void add(String e) { }
@Override public String getE() { return null; } }
|
此时,泛型E的值就是String类型。
2、始终不确定泛型的类型,直到创建对象时,确定泛型的类型
例如
1 2 3 4 5 6 7 8 9 10 11
| public class MyImp2<E> implements MyGenericInterface<E> { @Override public void add(E e) { }
@Override public E getE() { return null; } }
|
确定泛型:
1 2 3 4 5 6 7 8 9
|
public class GenericInterface { public static void main(String[] args) { MyImp2<String> my = new MyImp2<String>(); my.add("aa"); } }
|
泛型通配符
当使用泛型类或者接口时,传递的数据中,泛型类型不确定,可以通过通配符<?>表示。但是一旦使用泛型的通配符后,只能使用Object类中的共性方法,集合中元素自身方法无法使用。
通配符基本使用
泛型的通配符:不知道使用什么类型来接收的时候,此时可以使用?,?表示未知通配符。
此时只能接受数据,不能往该集合中存储数据。
举个例子大家理解使用即可:
1 2 3 4 5 6 7 8
| public static void main(String[] args) { Collection<Intger> list1 = new ArrayList<Integer>(); getElement(list1); Collection<String> list2 = new ArrayList<String>(); getElement(list2); } public static void getElement(Collection<?> coll){}
|
tips:泛型不存在继承关系 Collection
通配符高级使用—-受限泛型
之前设置泛型的时候,实际上是可以任意设置的,只要是类就可以设置。但是在JAVA的泛型中可以指定一个泛型的上限和下限。
泛型的上限:
- 格式:
类型名称 <? extends 类 > 对象名称
- 意义:
只能接收该类型及其子类
泛型的下限:
- 格式:
类型名称 <? super 类 > 对象名称
- 意义:
只能接收该类型及其父类型
比如:现已知Object类,String 类,Number类,Integer类,其中Number是Integer的父类
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| public static void main(String[] args) { Collection<Integer> list1 = new ArrayList<Integer>(); Collection<String> list2 = new ArrayList<String>(); Collection<Number> list3 = new ArrayList<Number>(); Collection<Object> list4 = new ArrayList<Object>(); getElement(list1); getElement(list2); getElement(list3); getElement(list4); getElement2(list1); getElement2(list2); getElement2(list3); getElement2(list4); }
public static void getElement1(Collection<? extends Number> coll){}
public static void getElement2(Collection<? super Number> coll){}
|
#