gpt4 book ai didi

Java PECS 无法添加到消费者

转载 作者:行者123 更新时间:2023-12-02 00:57:45 26 4
gpt4 key购买 nike

为什么我不能向消费者添加一个整数?

import java.util.*;

public class Test
{
public static void main(String[] args)
{
List<Integer> integers = new ArrayList<>();
test(integers);
}

public static <T> void test(List<? super T> to)
{
to.add(32);
}
}

按照PECS(Producer extends,Consumer super),我使用super,但是出现这个错误:

Test.java:13: error: no suitable method found for add(int)
to.add(32);
^
method Collection.add(CAP#1) is not applicable
(argument mismatch; int cannot be converted to CAP#1)
method List.add(CAP#1) is not applicable
(argument mismatch; int cannot be converted to CAP#1)
where T is a type-variable:
T extends Object declared in method <T>test(List<? super T>)
where CAP#1 is a fresh type-variable:
CAP#1 extends Object super: T from capture of ? super T
Note: Some messages have been simplified; recompile with -Xdiags:verbose to get full output
1 error

最佳答案

简单答案:因为在您的示例中没有与 int 的 T 关系。

但是它会像这样工作:

public class Test
{
public static void main(String[] args)
{
List<Integer> integers = new ArrayList<>();
test(integers, 32);
}

public static <T> void test(List<? super T> to, T elem)
{
to.add(elem);
}
}

还有这样的:

public class Test
{
public static void main(String[] args)
{
List<Integer> integers = new ArrayList<>();
test(integers);
}

public static void test(List<? super Integer> to)
{
to.add(32);
}
}

原因是您需要“解释”编译器您的集合类型与元素类型有何关系。

PS请阅读here

关于Java PECS 无法添加到消费者,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61124009/

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