java 从 List 转换到列表其中 B 延伸 A

发布于 2024-12-08 11:47:22 字数 495 浏览 0 评论 0原文

这可能吗?如果不是,为什么这在 Java 中不可能呢?

interface B extends A {}
public List<B> getList();
List<A> = getList(); // Type mismatch: cannot convert from List<B> to List<A>

我认为我正在寻找的主题是“协变类型”,如 here 此处,但是它很模糊,它不能解决我的问题。

is this possible? if not, why isn't this possible in Java?

interface B extends A {}
public List<B> getList();
List<A> = getList(); // Type mismatch: cannot convert from List<B> to List<A>

I think the topic I'm looking for is "covariant types" as here and here, but its murky and it doesn't solve my problem.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

别把无礼当个性 2024-12-15 11:47:22

下面是一个直观的例子,说明了这会如何导致事情变得严重错误:

interface B extends A {}
List<B> blist=new List<B>();
List<A> alist=blist;
alist.add(new A()); //should be ok, right?
B b = blist.get(0); //fail: even though blist is a List<B>, it now has an A in it

Here is an intuitive example of how this can make things go horribly wrong:

interface B extends A {}
List<B> blist=new List<B>();
List<A> alist=blist;
alist.add(new A()); //should be ok, right?
B b = blist.get(0); //fail: even though blist is a List<B>, it now has an A in it
慕巷 2024-12-15 11:47:22

尝试

List<? extends A> = getList()

Try

List<? extends A> = getList()
烟燃烟灭 2024-12-15 11:47:22

你不能这样做的原因是A和B不一样,你已经指定getList返回B的List(不是超类或子类)

The reason you can't do this is that A and B are not the same, you have specified getList returns a List of B (not a super class or a sub class)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文