How can I get the last value of arrayList (e.g. I dont know the last index of the ArrayList)?
Thanks.
|
feedback
|
|
The following is part of the
| ||||
|
feedback
|
|
this should do it:
| ||||
|
feedback
|
|
The | |||
|
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. | |||
|
feedback
|