我理解参数化集合,如果你想使用参数化类型的子类型,你需要将集合声明为Collection<? extends Whatever>
例如:
public interface Fruit {}
public interface Banana extends Fruit {}
void thisWorksFine() {
//Collection<Fruit> fruits; //wrong
Collection<? extends Fruit> fruits; //right
Collection<Banana> bananas = new ArrayList<>();
fruits = bananas;
}
但是如果我添加一个额外的层,这会爆炸:
public interface Box<T> {}
void thisDoesNotCompile() {
Collection<Box<? extends Fruit>> boxes;
Collection<Box<Banana>> bananaBoxes = new ArrayList<>();
boxes = bananaBoxes; // error!
}
出现错误:
error: incompatible types
required: Collection<Box<? extends Fruit>>
found: Collection<Box<Banana>>
为什么这些不兼容?有什么办法可以让它工作吗?