I am using an Iterator to iterate through collection
and I want to get the current loop index.
any ideas how to do that ?
|
|
What kind of collection? If it's an implementation of the List interface then you could just use (it.nextIndex()-1). |
|||
|
|
|
I had the same question and found using a ListIterator worked. Similar to the test above:
Make sure you call the nextIndex BEFORE you actually get the next(). |
|||
|
|
|
Here's a way to do it using your own variable and keeping it concise:
Output (you guessed it):
The advantage is that you don't increment your index within the loop (although you need to be careful to only call Iterator#next once per loop - just do it at the top). |
||||
|
|
Use a ListIterator to iterate through the Collection. If the Collection is not a List to start with use Arrays.asList(Collection.toArray()) to turn it into a List first. |
|||
|
|
|
As per http://www.leepoint.net/notes-java/data/collections/iterators.html iterator.nextIndex() would provide index of element that would be returned by subsequent call to next(). |
|||
|
|
|
You can use ListIterator to do the counting:
Cheers robert |
|||
|
|
|
All you need to use it the iterator.nextIndex() to return the current index that the iterator is on. This could be a bit easier than using your own counter variable (which still works also).
This code will go through the list1 list one item at a time and print the item's text, then "is at index" then it will print the index that the iterator found it at. :) |
|||
|
|