如果我们有这些课程:
abstract class Figure{
}
class Cercle extends Figure{
}
如果我写:
Vector<Figure> v = new Vector<Cercle>();
我有错误:
incompatible types: Vector<Cercle> cannot be converted to Vector<Figure>
如果有人知道它不起作用,我很有兴趣知道原因。谢谢你,对不起我的英语。
答案 0 :(得分:0)
多次回答。 Java中的泛型类型不是协变的。