java.util.List:Cannot instantiate the type ListInteger
当前位置:以往代写 > JAVA 教程 >java.util.List:Cannot instantiate the type ListInteger
2019-06-14

java.util.List:Cannot instantiate the type ListInteger

在利用java.util.List; 的时候,把语句写成了:

List<Integer> arr = new List<Integer>();

导致错误:

Cannot instantiate the type List<Integer>

正确写法是:

List<Integer> arr = new ArrayList<Integer>();

    关键字:

在线提交作业