因此,当使用具有List(或Map或Set等)作为属性的泛型类时,我遇到了一个奇怪的编译错误。
尝试迭代(使用foreach)List:
时发生编译错误Sample.java:11: error: incompatible types
for (String string : s.getStringList()) {
required: String
found: Object
为了清楚起见,我知道这个问题有一个简单的解决方法,但我想了解代码有什么问题
以下是我创建的示例:
import java.util.List;
public class Sample<T> {
public List<String> stringList;
public static void main(String[] args) {
Sample s = new Sample();
// Why this doesn't work?
for (String string : s.getStringList()) {
}
// Why does both of the following work?
List<String> newList = s.getStringList();
Sample<Object> s2 = new Sample<>();
for (String string : s2.getStringList()) {
}
}
public List<String> getStringList() {
return stringList;
}
}
答案 0 :(得分:7)
答案 1 :(得分:3)
您正在使用原始Sample
类型,因此编译器假设您不关心泛型类型,即使对于未在此对象中声明为原始类型的变量也是如此。这是一个奇怪的规则,但它是如何的。如果你关心泛型,你不应该使用原始类型。只要使用原始类型,编译器的所有成员也将被视为原始类型。