我应该如何将双精度插入ArrayList的特定部分? 例如,我们有一个ArrayList,其中每个都有10个双精度值,我们想要将其设为第6位10,我们应该怎么做?
答案 0 :(得分:2)
使用ArrayList.set()
方法:
public E set(int index, E element) Replaces the element at the specified position in this list with the specified element.
例如:
list.set(5, new Double(10));
答案 1 :(得分:1)
答案 2 :(得分:0)
请参阅文档:http://docs.oracle.com/javase/1.4.2/docs/api/java/util/ArrayList.html
void add(int index, Object element);
将指定元素插入此列表中的指定位置。