Java 7 泛型类型推断:返回值与方法参数
2022-09-01 19:20:36
为什么编译器能够在函数返回类型的情况下正确推断类型参数。String
public class Generics {
private static List<String> function() {
return new ArrayList<>();
}
}
但是当要推断的类型是方法参数时,它失败了:
public class Generics {
public static void main(String[] args) {
method(new ArrayList<>());
}
private static void method(List<String> list) {
}
}
本例中的错误是:
The method method(List<String>) in the type Generics is not applicable
for the arguments (ArrayList<Object>)