我有
private List<Test> tests = new ArrayList<Test>();
和
void creatingList ()
{
for (int i = 0; i < 10; i++)
for (int j = 0; j < 10; j++) {
if (array[k] == 1)
{
Test te = new Test(i, j);
tests.add(te);
}
k++;
}
}
例如,我这里有数字或字符串列表:(1,0); (1,1); (3,5); (5,5)
如何在List中的指定位置获取元素?例如,我需要第三个括号中包含的元素的第二个值。
答案 0 :(得分:0)
要使用List
一个shoud使用get(int index)
方法获取指定索引处的元素。
在您的情况下,您可能想要使用:
tests.get(2).nameOfTheFieldWhereTheSecondValueIsStored.
强烈建议您在提出问题前先查看文档:{{3}}