今天突然所有與ArrayList
有關的類都停止與Eclipse Neon Release(4.6.0)一起工作。我沒有使用maven。我試圖清理該項目,但沒有效果。我收到以下錯誤:java.util.List的未解決編譯
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
The type ArrayList is not generic; it cannot be parameterized with arguments
at Problem.main(Problem.java:5)
即使是一個簡單的代碼是這樣的:
import java.util.List;
public class Problem {
public static void main(String[] args){
List<Integer> listofthings = new ArrayList<>();
}
}
'的ArrayList()'失蹤@ corn3lius類型 –
corn3lius
否...通用已經用'List' –
CraigR8806
定義你是否也在導入'java.util.ArrayList'? – CraigR8806