实例化具有子类型的类型的向量

时间:2015-03-25 21:14:33

标签: java object instance-variables

如果我们有这些课程:

abstract class Figure{
}

class Cercle extends Figure{    
}

如果我写:

Vector<Figure> v = new Vector<Cercle>();

我有错误:

incompatible types: Vector<Cercle> cannot be converted to Vector<Figure>

如果有人知道它不起作用,我很有兴趣知道原因。谢谢你,对不起我的英语。

1 个答案:

答案 0 :(得分:0)

多次回答。 Java中的泛型类型不是协变的。