最佳答案
我试图更新一个 ArrayList
的现有值使用这个代码:
public static void main(String[] args) {
List<String> list = new ArrayList<String>();
list.add( "Zero" );
list.add( "One" );
list.add( "Two" );
list.add( "Three" );
list.add( 2, "New" ); // add at 2nd index
System.out.println(list);
}
我想打印 New
而不是 Two
,但我得到的结果是 [Zero, One, New, Two, Three]
,我仍然有 Two
。我想打印 [Zero, One, New, Three]
。我怎么能这么做?