how should i insert a double into a specific part of ArrayList? for example we have a ArrayList with ten doubles each one with the 0 value we want to make the sixth place 10, how should we do that?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Use
public E set(int index,
E element)
Replaces the element at the specified position in this list
with the specified element.
For example:
|
|||||||||||
|
|
Just used the indexed
EDIT: But if you want to replace the value at the specified index (instead of inserting a new one), I suggesst you follow @hmjd's solution. |
||||
|
|
|
See the documentation: http://docs.oracle.com/javase/1.4.2/docs/api/java/util/ArrayList.html
Inserts the specified element at the specified position in this list. |
|||
|
|