gpt4 book ai didi

Java子类作为参数

转载 作者:行者123 更新时间:2023-11-29 09:40:54 25 4
gpt4 key购买 nike

Class A
Class B extends A

public static List<A> doSomething(List<A> items, A item) {
// manipulate items
return items;
}

List<B> items = new ArrayList<B>();
B item = new B();

items = doSomething(items, item);

ERROR: The method doSomething(List< A>, A) is not applicable for the arguments (List< B>, B)

item 被接受,但 items in 不被接受。为什么我不能那样做?

正确的方法是什么?

最佳答案

你必须使用 List<? extends A> .

关于Java子类作为参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23673274/

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