我想将4个字符串列表存储到索引0-3中的数组中,并且能够检查索引是否已填充(!= null)。
因此我需要初始化一个类型列表数组,它在eclipse中失败,并显示消息“无法创建列表的通用数组”:
// Does not work
List<String>[] myArray = new List<String>[4];
// Does not work
List<String>[] myArray = new ArrayList<String>[4];
像在Convert an ArrayList to an object array处宣传的那样:
ArrayList<List<String>> myArrayList = new ArrayList<List<String>>();
myArrayList.add(new ArrayList<String>());
myArrayList.add(new ArrayList<String>());
myArrayList.add(new ArrayList<String>());
myArrayList.add(new ArrayList<String>());
// Does not work
List<String>[] myArray = myArrayList.toArray(new List<String>[myArrayList.size()]);
// Does not work
List<String>[] myArray = myArrayList.toArray(new ArrayList<String [myArrayList.size()]);
但为什么这不起作用?
答案 0 :(得分:0)
ArrayList
是Java中的通用类。您无法创建泛型类型的数组。这个不允许。你可以做的是创建一个通用类型列表
ArrayList<ArrayList<String>> listOfStringList = new ArrayList<ArrayList<String>>();