天天看點

Cannot instantiate the type List

在使用java.util.List;的時候,把語句寫成了:

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

導緻錯誤:

Cannot instantiate the type List<Integer>

正确寫法是:

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