是否有可能超出ArrayList
第一个索引的第一个数字?
这是一个例子:
共有5个项目:
path = {0.5,5.0},{0.6,6.0},{0.7,7.0},{0.8,8.0},{0.9,9.0}
我希望从5.0
...
{0.5,5.0}
我用path.get(0)
尝试了它但它只给了我{0.5,5.0}
。
是否可以在不获取所有其他数字的情况下从中获取5.0
?
答案 0 :(得分:2)
如果您的ArrayList
包含数组,则可以使用
myList.get(0)[1] // You're getting the index 1 from the 1st array of your ArrayList
否则,如果它包含其他ArrayList's
myList.get(0).get(1) // Same logic as above applied to the Collection
答案 1 :(得分:1)