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.

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?

share|improve this question

3 Answers

Use ArrayList.set() method:

public E set(int index,
             E element)

Replaces the element at the specified position in this list
with the specified element. 

For example:

list.set(5, new Double(10));
share|improve this answer
list doesn't have set method. – adarshr May 3 '12 at 11:16
@adashr See this – Jigar Joshi May 3 '12 at 11:16
@adarshr, yes i does: public E set(int index, E element)Replaces the element at the specified position in this list with the specified element. – hmjd May 3 '12 at 11:16
Ok I take back the downvote. But the OP wanted to insert, not replace. – adarshr May 3 '12 at 11:17
@adarshr, I think the OP does want to replace as all it is stated that there is already an ArrayList with ten doubles, all with value zero. – hmjd May 3 '12 at 11:19
show 3 more comments

Just used the indexed add.

list.add(6, 10D);

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.

share|improve this answer

See the documentation: http://docs.oracle.com/javase/1.4.2/docs/api/java/util/ArrayList.html

void add(int index, Object element);

Inserts the specified element at the specified position in this list.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.