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.
set我有一个 2D ArrayList,我想通过使用该方法将其中一个元素替换为其他元素。
set
根据Java API:
set(int index, E Element)
是构造函数。鉴于 ArrayList 是二维的,如何输入索引?
如果你有一个二维的ArrayList,那么你需要做的是
ArrayList
outerList.get(x).set(y, newValueAtXY);
...它获取索引处的行x并将该行中的元素设置y为newValueAtXY.
x
y
newValueAtXY
我在搜索时遇到了这个:
array.get(i1).put(i2, value);
我认为,可以这样修改:
array.get(i1).set(i2, value);
我希望它有效。