本文在Java 泛型详解的基础上添加注释和增补
泛型的目的
泛型的主要目的之一就是用来指定容器要持有什么类型的对象,并且由编译器保证其正确性。 -- 《Thinking in Java》
Object做为参数完全可以替代泛型,但是使用Object做为参数,就可以用任何类型,不能限定类型。
使用泛型,可以帮助开发人员在编译的时候就能定位错误。
而使用Object,只能在运行的时候才能发现错误。
泛型的基本分类
- 泛型类
- 泛型接口
- 泛型方法
泛型类
我们首先定义一个简单的Box类:
public class Box {
private String object;
public void set(String object) { this.object = object; }
public String get() { return object; }
}
这是最常见的做法,这样做的一个坏处是Box里面现在只能装入String类型的元素,今后如果我们需要装入Integer等其他类型的元素,还必须要另外重写一个Box,代码得不到复用,使用泛型可以很好的解决这个问题:
public class Box<T> {
// T stands for "Type"
private T t;
public void set(T t) { this.t = t; }
public T get() { return t; }
}
这样我们的Box类便可以得到复用,我们可以将T替换成任何我们想要的类型:
Box<Integer> integerBox = new Box<Integer>();
Box<Double> doubleBox = new Box<Double>();
Box<String> stringBox = new Box<String>();
泛型接口
泛型接口和泛型类非常类似。同时泛型接口还可以继承泛型接口
最典型的泛型接口是iterable接口
public interface Iterable<T> {
Iterator<T> iterator();
}
还有接口继承泛型
public interface Collection<E> extends Iterable<E>{
int size();
Iterator<T> iterator();
}
泛型方法
基本原则
- 在方法返回类型前面写上泛型参数列表
- 传入基本类型时,会被自动装箱
public class GenericMethod {
public <T,M,N> void getType(T t,M m,N n){
/*
* 传入int,long ,double等基本类型时,自动打包机制
* 会将基本类型包装成相应的对象
*/
System.out.println(t.getClass().getName());
System.out.println(m.getClass().getName());
System.out.println(n.getClass().getName());
}
public static void main(String[] args) {
//泛型类在创建对象时必须指定参数类型,而泛型方法则不需要在创建对象时指定参数类型T
GenericMethod gm = new GenericMethod();
gm.getType("", 1, 1.0);
gm.getType(1.0F, 'c', gm);
}
}
泛型的继承
泛型可以继承,并且通过泛型继承,可实现更多的灵活度。
public class TwoTuple<A,B> {
private A a;
private B b;
public TwoTuple(A a, B b){
this.a = a;
this.b = b;
}
}
public class ThreeTuple<A, B, C> extends TwoTuple<A, B>{
private C c;
public ThreeTuple(A a, B b, C c){
super(a, b);
this.c = c;
}
}
当然也可以这样写:
public class FourTuple<D> extends ThreeTuple {
//这里需要ThreeTuple具有无参构造函数
private D d;
public FourTuple(D d){
this.d = d;
}
}
这时,依旧可以new FourTuple(true).setC("hehe");
,不过这里的c
的类型就是Object,可以为任何类型。这样做的话,就失去了泛型的本意,所以最好不要省略泛型的类型。
泛型的特性
类型推断
List<Integer> arrs = new ArrayList<Integer>();
上面后一个的Integer是多余的。泛型能够支持根据返回类型推断参数类型。如下:
//Guava
package com.google.common.collect
class Lists{
public static <E> ArrayList<E> newArrayList() {
return new ArrayList<E>();
}
}
注意:类型推断只对赋值操作有效。如下代码示例中,类型推断做为参数时是不能编译通过的
class Test{
public static void f(List<Intger> p){}
public static void main(String[] args){
f(Lists.newArrayList());//不能编译通过
}
}
What's More: 泛型可用于可变参数
public static <T> List<T> makeList(T... args){ List<T> list = Lists.newArrayList(); for(T t : args){ list.add(t); } }
边界符
有时候我们需要限定泛型参数的类型。比如,我们需要泛型参数类型必须是Collection
的子类型,才能使用Collection
中的某些方法,就需要这样写:
public <T extends Collection> func(T a){
//do something
}
这样就限定了func()
传入的参数类型只能是Collection
的子类型。
当然,有子类型限定,也就会有父类型限定,使用的关键字是super
。如:<T super List>
通配符
在了解通配符之前,我们首先必须要澄清一个概念,还是借用我们上面定义的Box类,假设我们添加一个这样的方法:
public void boxTest(Box<Number> n) { /* ... */ }
那么现在Box<Number> n
允许接受什么类型的参数?我们是否能够传入Box<Integer>
或者Box<Double>
呢?答案是否定的,虽然Integer和Double是Number的子类,但是在泛型中Box<Integer>
或者Box<Double>
与Box<Number>
之间并没有任何的关系。这是显而易见的,就向不能向func(List<String> a)
中传入List<Integer>
类型一样。
但是,有时候我们希望能写一个通用的方法,这也是泛型的意义所在。怎么能突破上述的那种限定呢?这里就需要使用通配符。
public void boxTest(Box<? extends Number> n){
}
上面的代码中使用了<? extends Number>
这样的通配符,意思是,Box中的类型,可以是任意Number的子类型。可以是Box<Integer>
,也可以使Box<Double>
,因为Integer和Double都是Number的子类型。
PESC
上面我们看到了类似<? extends T>的用法,利用它我们可以从list里面get元素,那么我们可不可以往list里面add元素呢?我们来尝试一下:
public class GenericsAndCovariance {
public static void main(String[] args) {
List<? extends Fruit> flist = new ArrayList<Apple>();
flist.add(new Apple()); // Compile Error: can't add any type of object
flist.add(null); // Legal but uninteresting
// We Know that it returns at least Fruit:
Fruit f = flist.get(0);
}
}
答案是否定,Java编译器不允许我们这样做,为什么呢?对于这个问题我们不妨从编译器的角度去考虑。因为List<? extends Fruit> flist它自身可以有多种含义:
List<? extends Fruit> flist = new ArrayList<Fruit>();
List<? extends Fruit> flist = new ArrayList<Apple>();
List<? extends Fruit> flist = new ArrayList<Orange>();
- 当我们尝试add一个Apple的时候,flist可能指向
new ArrayList<Orange>()
; - 当我们尝试add一个Orange的时候,flist可能指向
new ArrayList<Apple>()
; - 当我们尝试add一个Fruit的时候,这个Fruit可以是任何类型的Fruit,而flist可能只想某种特定类型的Fruit,编译器无法识别所以会报错。
所以对于实现了<? extends T>的集合类只能将它视为Producer向外提供(get)元素,而不能作为Consumer来对外获取(add)元素。
如果我们要add元素应该怎么做呢?可以使用<? super T>
:
public class GenericWriting {
static List<Apple> apples = new ArrayList<Apple>();
static List<Fruit> fruit = new ArrayList<Fruit>();
static <T> void writeExact(List<T> list, T item) {
list.add(item);
}
static void f1() {
writeExact(apples, new Apple());
writeExact(fruit, new Apple());
}
static <T> void writeWithWildcard(List<? super T> list, T item) {
list.add(item)
}
static void f2() {
writeWithWildcard(apples, new Apple());
writeWithWildcard(fruit, new Apple());
}
public static void main(String[] args) {
f1(); f2();
}
}
这样我们可以往容器里面添加元素了,但是使用super的坏处是以后不能get容器里面的元素了,原因很简单,我们继续从编译器的角度考虑这个问题,对于List<? super Apple> list,它可以有下面几种含义:
List<? super Apple> list = new ArrayList<Apple>();
List<? super Apple> list = new ArrayList<Fruit>();
List<? super Apple> list = new ArrayList<Object>();
当我们尝试通过list来get一个Apple的时候,可能会get得到一个Fruit,这个Fruit可以是Orange等其他类型的Fruit。
根据上面的例子,我们可以总结出一条规律,”Producer Extends, Consumer Super”,即PESC:
- “Producer Extends” – 如果你需要一个只读List,用它来produce T,那么使用? extends T。
- “Consumer Super” – 如果你需要一个只写List,用它来consume T,那么使用? super T。
如果阅读过一些Java集合类的源码,可以发现通常我们会将两者结合起来一起用,比如像下面这样:
public class Collections {
public static <T> void copy(List<? super T> dest, List<? extends T> src) {
for (int i=0; i<src.size(); i++)
dest.set(i, src.get(i));
}
}
注释:
简而言之,对于Produce这种情况,显然使用extends
才能在容器中存放任意子类。如,List<? extends Fruit>就能存放Fruit的任意子类。
同理,对于Consume这种情况,由于不知道容器中存放的具体类型是啥,那么用父类型承接是最稳妥的选择,所以用
super
如,List<? super Apple>就能承接任意的Fruit类型
类型擦除
Java泛型中最令人苦恼的地方或许就是类型擦除了,特别是对于有C++经验的程序员。类型擦除就是说Java泛型只能用于在编译期间的静态类型检查,然后编译器生成的代码会擦除相应的类型信息,这样到了运行期间实际上JVM根本就知道泛型所代表的具体类型。这样做的目的是因为Java泛型是1.5之后才被引入的,为了保持向下的兼容性,所以只能做类型擦除来兼容以前的非泛型代码。对于这一点,如果阅读Java集合框架的源码,可以发现有些类其实并不支持泛型。
说了这么多,那么泛型擦除到底是什么意思呢?我们先来看一下下面这个简单的例子:
public class Node<T> {
private T data;
private Node<T> next;
public Node(T data, Node<T> next) {
this.data = data;
this.next = next;
}
public T getData() { return data; }
// ...
}
编译器做完相应的类型检查之后,实际上到了运行期间上面这段代码实际上将转换成:
public class Node {
private Object data;
private Node next;
public Node(Object data, Node next) {
this.data = data;
this.next = next;
}
public Object getData() { return data; }
// ...
}
这意味着不管我们声明Node<String>
还是Node<Integer>
,到了运行期间,JVM统统视为Node<Object>
。有没有什么办法可以解决这个问题呢?这就需要我们自己重新设置bounds了,将上面的代码修改成下面这样:
public class Node<T extends Comparable<T>> {
private T data;
private Node<T> next;
public Node(T data, Node<T> next) {
this.data = data;
this.next = next;
}
public T getData() { return data; }
// ...
}
这样编译器就会将T出现的地方替换成Comparable而不再是默认的Object了:
public class Node {
private Comparable data;
private Node next;
public Node(Comparable data, Node next) {
this.data = data;
this.next = next;
}
public Comparable getData() { return data; }
// ...
}
上面的概念或许还是比较好理解,但其实泛型擦除带来的问题远远不止这些,接下来我们系统地来看一下类型擦除所带来的一些问题,有些问题在C++的泛型中可能不会遇见,但是在Java中却需要格外小心。
问题一
在Java中不允许创建泛型数组,类似下面这样的做法编译器会报错:
List<Integer>[] arrayOfLists = new List<Integer>[2]; // compile-time error
为什么编译器不支持上面这样的做法呢?继续使用逆向思维,我们站在编译器的角度来考虑这个问题。
我们先来看一下下面这个例子:
Object[] strings = new String[2];
strings[0] = "hi"; // OK
strings[1] = 100; // An ArrayStoreException is thrown.
对于上面这段代码还是很好理解,字符串数组不能存放整型元素,而且这样的错误往往要等到代码运行的时候才能发现,编译器是无法识别的。接下来我们再来看一下假设Java支持泛型数组的创建会出现什么后果:
Object[] stringLists = new List<String>[]; // compiler error, but pretend it's allowed
stringLists[0] = new ArrayList<String>(); // OK
// An ArrayStoreException should be thrown, but the runtime can't detect it.
stringLists[1] = new ArrayList<Integer>();
假设我们支持泛型数组的创建,由于运行时期类型信息已经被擦除,JVM实际上根本就不知道new ArrayList<String>()
和new ArrayList<Integer>()
的区别。类似这样的错误假如出现才实际的应用场景中,将非常难以察觉。
注:一切错误尽量在编译的时候发现,如果在线上运行的时候才发现,就晚了。所以,由于泛型由于类型擦除,导致有些问题有可能只有在运行时才会被发现,所以从语法的角度直接给做了限定。
问题二
对于泛型代码,Java编译器实际上还会偷偷帮我们实现一个Bridge method。
public class Node<T> {
public T data;
public Node(T data) { this.data = data; }
public void setData(T data) {
System.out.println("Node.setData");
this.data = data;
}
}
public class MyNode extends Node<Integer> {
public MyNode(Integer data) { super(data); }
public void setData(Integer data) {
System.out.println("MyNode.setData");
super.setData(data);
}
}
看完上面的分析之后,你可能会认为在类型擦除后,编译器会将Node和MyNode变成下面这样:
public class Node {
public Object data;
public Node(Object data) { this.data = data; }
public void setData(Object data) {
System.out.println("Node.setData");
this.data = data;
}
}
public class MyNode extends Node {
public MyNode(Integer data) { super(data); }
public void setData(Integer data) {
System.out.println("MyNode.setData");
super.setData(data);
}
}
实际上不是这样的,我们先来看一下下面这段代码,这段代码运行的时候会抛出ClassCastException异常,提示String无法转换成Integer:
MyNode mn = new MyNode(5);
Node n = mn; // A raw type - compiler throws an unchecked warning
n.setData("Hello"); // Causes a ClassCastException to be thrown.
// Integer x = mn.data;
如果按照我们上面生成的代码,运行到第3行的时候不应该报错(注意我注释掉了第4行),因为MyNode中不存在setData(String data)
方法,所以只能调用父类Node的setData(Object data)
方法,既然这样上面的第3行代码不应该报错,因为String当然可以转换成Object了,那ClassCastException到底是怎么抛出的?
实际上Java编译器对上面代码自动还做了一个处理:
class MyNode extends Node {
// Bridge method generated by the compiler
public void setData(Object data) {
setData((Integer) data);
}
public void setData(Integer data) {
System.out.println("MyNode.setData");
super.setData(data);
}
// ...
}
这也就是为什么上面会报错的原因了,setData((Integer) data);
的时候String无法转换成Integer。所以上面第2行编译器提示unchecked warning的时候,我们不能选择忽略,不然要等到运行期间才能发现异常。如果我们一开始加上Node<Integer> n = mn
就好了,这样编译器就可以提前帮我们发现错误。
问题三
正如我们上面提到的,Java泛型很大程度上只能提供静态类型检查,然后类型的信息就会被擦除,所以像下面这样利用类型参数创建实例的做法编译器不会通过:
public static <E> void append(List<E> list) {
E elem = new E(); // compile-time error
list.add(elem);
}
但是如果某些场景我们想要需要利用类型参数创建实例,我们应该怎么做呢?可以利用反射解决这个问题:
public static <E> void append(List<E> list, Class<E> cls) throws Exception {
E elem = cls.newInstance(); // OK
list.add(elem);
}
我们可以像下面这样调用:
List<String> ls = new ArrayList<>();
append(ls, String.class);
实际上对于上面这个问题,还可以采用Factory和Template两种设计模式解决,感兴趣的朋友不妨去看一下Thinking in Java中第15章中关于Creating instance of types(英文版第664页)的讲解,这里我们就不深入了。
问题四
我们无法对泛型代码直接使用instanceof关键字,因为Java编译器在生成代码的时候会擦除所有相关泛型的类型信息,正如我们上面验证过的JVM在运行时期无法识别出ArrayList<Integer>
和ArrayList<String>
的之间的区别:
public static <E> void rtti(List<E> list) {
if (list instanceof ArrayList<Integer>) { // compile-time error
// ...
}
}
和上面一样,我们可以使用通配符重新设置bounds(边界)来解决这个问题:
public static void rtti(List<?> list) {
if (list instanceof ArrayList<?>) { // OK; instanceof requires a reifiable type
// ...
}
}