Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试做一些简单的事情,制作一个列表来存储一些整数值
public List<int> myList = new List<int>();
这是我制作列表的尝试,这是我的错误信息:
标记“int”上的语法错误,此标记后预期的尺寸
那么你如何在android中制作一个列表?
public List<Integer> myList = new ArrayList<Integer>();
并且List是一个接口,因此您不能创建它的实例,而是使用ArrayList.
List
ArrayList
使用整数时出现此错误:无法实例化类型列表
确保您正在导入java.lang.Integer
java.lang.Integer
List是一个接口,所以你不能实例化。你必须使用ArrayList
List<Integer> myList = new ArrayList<Integer>();