How can I get the last value of arrayList (e.g. I dont know the last index of the ArrayList)?

Thanks.

link|improve this question

77% accept rate
feedback

4 Answers

up vote 30 down vote accepted

The following is part of the List interface (which ArrayList implements):

E e = list.get(list.size() - 1);

E is the element type. If the list is empty, get throws an IndexOutOfBoundsException. You find the whole API documentation here.

link|improve this answer
feedback

this should do it:

if (!arrayList.isEmpty()) {
  arrayList.get(arrayList.size()-1);
}
link|improve this answer
feedback

The size() method returns the number of elements in the ArrayList. The index values of the elements are 0 through (size()-1), so you would use myArrayList.get(myArrayList.size()-1) to retrieve the last element.

link|improve this answer
feedback

if you modify your list, then use listiterator() and iterate from last index (that is size()-1 respectively). if you fail again, check your list structure.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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