In Python, the enumerate function allows you to iterate over a sequence of (index, value) pairs. For example:

>>> numbers = ["zero", "one", "two"]
>>> for i, s in enumerate(numbers):
...     print i, s
... 
0 zero
1 one
2 two

Is there any way of doing this in Java?

link|improve this question
feedback

4 Answers

For collections that implement the List interface, you can call the listIterator() method to get a ListIterator. The iterator has (amongst others) two methods - nextIndex(), to get the index; and next(), to get the value (like other iterators).

So a Java equivalent of the Python above might be:

List<String> numbers = Arrays.asList("zero", "one", "two");
ListIterator<String> it = numbers.listIterator();
while (it.hasNext()) {
    System.out.println(it.nextIndex() + " " + it.next());
}

which, like the Python, outputs:

0 zero
1 one
2 two
link|improve this answer
So it.next() has a sideeffect? Is it guaranteed to be safe to mix it.nextIndex() and it.next() in the same expression? – gnibbler Aug 23 '11 at 21:43
1  
Yes, it goes to the next element. See download.oracle.com/javase/6/docs/api/java/util/… for how a ListIterator works. – JB Nizet Aug 23 '11 at 21:55
1  
As @JB Nizet says, yes, next() has the side effect of advancing the iterator one element. However the Java Language Specification guarantees that the operands to the + operator are evaluated left-to-right. See section 15.7. – Richard Fearn Aug 24 '11 at 7:40
feedback
List<String> list = { "foo", "bar", "foobar"};
int i = 0;
for (String str : list){
     System.out.println(i++ + str );
}
link|improve this answer
An i++ is missing at the end of the loop. And the syntax to initialize the list is not valid. You must use Arrays.asList(...) – JB Nizet Aug 23 '11 at 20:45
@JB Nizet: yes..thanks. I was editing it. I think I can use i++ directly inside the println because i should be incremented after its value has been returned – Heisenbug Aug 23 '11 at 20:46
feedback

Strictly speaking, no, as the enumerate() function in Python returns a list of tuples, and tuples do not exist in Java.

If however, all you're interested in is printing out an index and a value, then you can follow the suggestion from Richard Fearn & use nextIndex() and next() on an iterator.

Note as well that enumerate() can be defined using the more general zip() function (using Python syntax):

mylist = list("abcd")
zip(range(len(mylist)), mylist)

gives [(0, 'a'), (1, 'b'), (2, 'c'), (3, 'd')]

If you define your own Tuple class (see Using Tuples in Java as a starting point), then you could certainly easily write your own zip() function in Java to make use of it (using the Tuple class defined in the link):

public static <X,Y> List<Tuple<X,Y>> zip(List<X> list_a, List<Y> list_b) {
    Iterator<X> xiter = list_a.iterator();
    Iterator<Y> yiter = list_b.iterator();

    List<Tuple<X,Y>> result = new LinkedList<Tuple<X,Y>>();

    while (xiter.hasNext() && yiter.hasNext()) {
        result.add(new Tuple<X,Y>(xiter.next(), yiter.next()));
    }

    return result;
}

And once you have zip(), implementing enumerate() is trivial.

Edit: slow day at work, so to finish it off:

public static <X> List<Tuple<Integer,X>> enumerate (List<X> list_in) {
    List<Integer> nums = new ArrayList<Integer>(list_in.size());
    for (int x = 0; x < list_in.size(); x++) { 
        nums.add(Integer.valueOf(x));
    }

    return zip (nums, list_in);
}
link|improve this answer
I suppose technically as well that using an ArrayList initialized to the Math.min of the two input list lengths would be a better choice for the returned list, but the idea's the same. – Adam Parkin Aug 24 '11 at 17:20
feedback

No. Maybe there are some libraries for supporting such a functionality. But if you resort to the standard libraries it is your job to count.

link|improve this answer
1  
This is wrong. See @Richard Fearn's answer. – blubb Aug 23 '11 at 20:56
feedback

Your Answer

 
or
required, but never shown

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