Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using an Iterator to iterate through collection and I want to get the current loop index.
any ideas how to do that ?

share|improve this question

9 Answers

up vote 16 down vote accepted

Use your own variable and increment it in the loop.

share|improve this answer

What kind of collection? If it's an implementation of the List interface then you could just use (it.nextIndex()-1).

share|improve this answer

I had the same question and found using a ListIterator worked. Similar to the test above:

List<String> list = Arrays.asList("zero", "one", "two");

ListIterator iter = list.listIterator();

while (iter.hasNext()) {
        System.out.println("index: " + iter.nextIndex() + " value: " + iter.next());

}

Make sure you call the nextIndex BEFORE you actually get the next().

share|improve this answer

Here's a way to do it using your own variable and keeping it concise:

List<String> list = Arrays.asList("zero", "one", "two");

int i = 0;
for (Iterator<String> it = list.iterator(); it.hasNext(); i++) {
    String s = it.next();
    System.out.println(i + ": " + s);
}

Output (you guessed it):

0: zero
1: one
2: two

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).

share|improve this answer
If you create the iterator yourself you can use a ListIterator as well and do not need the separate int variable. – Robert Klemme Aug 20 '12 at 7:14

Use an int and increment it within your loop.

share|improve this answer

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.

share|improve this answer

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().

share|improve this answer

You can use ListIterator to do the counting:

final List<String> list = Arrays.asList("zero", "one", "two");

for (final ListIterator<String> it = list.listIterator(); it.hasNext();) {
    final String s = it.next();
    System.out.println(i.previousIndex() + ": " + s);
}

Cheers

robert

share|improve this answer

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).

public static void main(String[] args) {    
    String[] str1 = {"list item 1", "list item 2", "list item 3", "list item 4"};
    List<String> list1 = new ArrayList<String>(Arrays.asList(str1));

    ListIterator<String> it = list1.listIterator();

    int x = 0;

    //The iterator.nextIndex() will return the index for you.
    while(it.hasNext()){
        System.out.println(it.next() + " is at index" + it.nextIndex());    
    }
}

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. :)

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.