gpt4 book ai didi

java - 如何向此通用集合添加子类型?

转载 作者:行者123 更新时间:2023-12-01 06:36:07 25 4
gpt4 key购买 nike

我想要一个子类对象的集合,但我的泛型类型实现现在在 allItems.add(item); 处给出错误,因为 allItems 确实不包含 Item 类型。那么我怎样才能改变下面的代码而不给出错误呢?

public class ItemManager {
public static Collection<? extends Item> allItems;
...
public static boolean addItem(Item item){
return allItems.add(item);
}
}

新项目可能会添加为:

itemManager.add(new Bomb());

有没有办法将addItem更改为:

public static boolean addItem([all subclasses of Item] item) { ... }

或者可能更改allItems以便它可以接受接收ItemItem的子类?

最佳答案

该集合应声明为 Collection<Item> .

Collection<? extends Item>表示:某个未知类的集合,该类是或扩展了 Item。您无法向此类集合添加任何内容,因为您不知道它所包含的对象类型。

关于java - 如何向此通用集合添加子类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11650759/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com