我创建了LinkedList
个String
数组:
public static void main(String[] args){
String[] one = new String[10];
String[] two = new String[10];
String[] three = new String[10];
LinkedList<String[]> myList = new LinkedList<String[]>();
myList.add(one);
myList.add(two);
myList.add(three);
}
我的问题是我现在如何访问其中一个数组的元素。例如,我可以通过以下方式访问(或在示例中打印)整个数组元素:
System.out.println(myList.get(0));
但是如何访问String
所拥有的myList.get(0)
数组中的第一个元素?我尝试了myList.get(0).[0]
之类的所有内容,但是当数组是链表的一个元素时,我无法弄清楚如何访问数组中的元素。
答案 0 :(得分:6)
array.get(0)[index];
这应该可以解决问题。
array.get(0)
返回一个数组,你要做的就是在它之后添加你的索引(没有点分开)。
与使用one[index]
的方式相同。