我制作了一个静态类方法(在此称为"函数")f
,其中列出了Callable<String>
s:
import java.util.concurrent.*;
import java.util.*;
class A {
static void f(List<Callable<String>> l) {}
static <T> List<T> s(T t) {
LinkedList<T> l = new LinkedList<T>();
l.add(t);
return l;
}
public static void main(String[] _) {
f(s(new Callable<String>() {
public String call() throws Exception {
return "HI";
}
}));
}
}
我创建了另一个函数s
,它将一个元素包装在一个列表中,因此我可以在其中创建一个包含Callable
个f
的列表来测试Callable
。
除非我将The method f(List<Callable<String>>) in the type A is not applicable for the arguments (List<new Callable<String>(){}>)
提取到变量中,否则无法编译。为什么呢?
在eclipse中,它出现了这个错误:
A.java:11: error: method f in class A cannot be applied to given types;
f(s(new Callable<String>() {
^
required: List<Callable<String>>
found: List<<anonymous Callable<String>>>
reason: actual argument List<<anonymous Callable<String>>> cannot be converted to List<Callable<String>> by method invocation conversion
1 error
这很奇怪。似乎在说一个表达式(产生一个值)是一种类型。使用javac会出现不同的错误:
{{1}}
答案 0 :(得分:3)
将f
的签名更改为Callable
的上限。
static void f(List<? extends Callable<String>> l) {}
这是必要的,因为:
List<subclass>
不可分配给List<superclass>
答案 1 :(得分:2)
错误消息有点误导。我猜这是因为编译器还没有为匿名类型命名(或选择不使用它)。但基本上,List<SomeSubTypeOfCallable>
不是List<Callable>
的子类型,因此不是期望后者的方法的有效参数。