我试图弄清楚为什么这段代码无法编译。
我有接口 B 扩展的接口 A。实现接口 B 的类 C。
当我调用一个接受单个 A 类型对象的方法时,我可以传入一个 C 类型的对象,这很好。
当我调用一个接受 A 类型的 java.util.List 的方法时,我无法传入 C 类型的对象的 java.util.List。Eclipse 生成以下错误:Test1 类型中的方法 addAList(List)不适用于参数(列表)
源代码示例如下。
import java.util.ArrayList;
import java.util.List;
public class Test1 {
public void addASingle(A a) {
return;
}
public void addAList(List<A> aList) {
return;
}
// **********************************
public static void main(String[] args) {
Test1 t = new Test1();
C c1 = new C();
List<C> cList = new ArrayList<C>();
cList.add(c1);
t.addASingle(c1); // allowed
t.addAList(cList); // The method addAList(List<Test1.A>)
// in the type Test1 is not applicable for the arguments (List<Test1.C>)
}
// **********************************
public static interface A {
}
public static interface B extends A {
}
public static class C implements B {
}
}