列表 lsb = new ArrayList(); java中的逻辑错误?
我们有:
class A{}
class B extends A{}
class C extends B{}
class D extends C{}
我们可以像这样定义列表:
List<? super B> lsb1 = new ArrayList<Object>();
//List<? super B> lsb2 = new ArrayList<Integer>();//Integer, we expect this
List<? super B> lsb3 = new ArrayList<A>();
List<? super B> lsb4 = new ArrayList<B>();
//List<? super B> lsb5 = new ArrayList<C>();//not compile
//List<? super B> lsb6 = new ArrayList<D>();//not compile
现在我们创建一些对象:
Object o = new Object();
Integer i = new Integer(3);
A a = new A();
B b = new B();
C c = new C();
D d = new D();
我将尝试将这些对象添加到列表中:
List<? super B> lsb = new ArrayList<A>();
lsb.add(o);//not compile
lsb.add(i);//not compile
lsb.add(a);//not compile
lsb.add(b);
lsb.add(c);
lsb.add(d);
问题:
为什么当我定义 List
List< 的引用时? super B>
我可以使用 new ArrayList<>();
,它可以具有 B、A、Object 的元素类型(我期望如此),但是当我向此列表添加元素时,可以仅添加类型为 B、C、D 的对象吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此处 @ JavaRanch 常见问题解答进行了精彩的解释。
Explained beautifully here @ JavaRanch FAQs.
列表
是一个List
,其确切组件类型未知。编译器只知道组件类型是B
、A
或Object
。它可以是一个
List
。如果它是
List
,则无法添加元素A
。这是为了防止数组可能发生以下情况:
A
List<? super B>
is aList
, whose exact component type is unknown. All the compiler knows is that the component type isB
,A
orObject
.It could be a
List<B>
.If it is a
List<B>
, you cannot add an elementA
.This is to prevent the following, which can happen with arrays: