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

Is there a way in Java's for-each loop

for(String s : stringArray) {
  doSomethingWith(s);
}

to find out how often the loop has already been processed?

Aside from using using the old and well-known for(int i=0;i<boundary;i++)-loop, is the construct

int i = 0;
for(String s : stringArray) {
  doSomethingWith(s);
  i++;
}

the only way to have such a counter available in a for-each loop?

share|improve this question
1  
the question not clear. can write more description. – ecleel Jan 25 '09 at 11:20
@Junuxx no, this is Java, not C# – eagleoneraptor Apr 9 at 16:05

9 Answers

up vote 52 down vote accepted

Yes, you'll have to provide your own counter.

The reason for this is that the for-each loop internally does not have a counter; it is based on the Iterable interface, i.e. it uses an Iterator to loop through the "collection" - which may not be a collection at all, and may in fact be something not at all based on indexes (such as a linked list).

share|improve this answer

There is another way.

Given that you write your own Index class and a static method that returns an Iterable over instances of this class you can

for (Index<String> each: With.index(stringArray)) {
    each.value;
    each.index;
    ...
}

Where the implementation of With.index is something like

class With {
    public static <T> Iterable<Index<T>> index(final T[] array) {
        return new Iterable<Index<T>>() {
            public Iterator<Index<T>> iterator() {
                return new Iterator<Index<T>>() {
                    index = 0;
                    public boolean hasNext() { return index < array.size }
                    public Index<T> next() { return new Index(array[index], index++); }
                    ...
                }
            }
        }
    }
}
share|improve this answer

You need to run your own counter thus:

int i = 0;
for(String s : stringArray) {
    doSomethingWith(s,i);
    i++;
}
share|improve this answer

I'm afraid this isn't possible with foreach. But I can suggest you a simple old-styled for-loops:

	List<String> l = new ArrayList<String>();

	l.add("a");
	l.add("b");
	l.add("c");
	l.add("d");

	// the array
	String[] array = new String[l.size()];

	for(ListIterator<String> it =l.listIterator(); it.hasNext() ;)
	{
		array[it.nextIndex()] = it.next();
	}

Notice that, the List interface gives you access to it.nextIndex().

(edit)

To your changed example:

	for(ListIterator<String> it =l.listIterator(); it.hasNext() ;)
	{
		int i = it.nextIndex();
		doSomethingWith(it.next(), i);
	}
share|improve this answer

One of the changes Sun is considering for Java7 is to provide access to the inner Iterator in foreach loops. the syntax will be something like this (if this is accepted):

for (String str : list : it) {
  if (str.length() > 100) {
    it.remove();
  }
}

This is syntactic sugar, but apparently a lot of requests were made for this feature. But until it is approved, you'll have to count the iterations yourself, or use a regular for loop with an Iterator.

Yuval =8-)

share|improve this answer

If you need a counter in an for-each loop you have to count yourself. There is no built in counter as far as I know.

share|improve this answer
(I've fixed that bug in the question.) – Tom Hawtin - tackline Jan 25 '09 at 11:39
Check again. There is the same bug in the second code snippet... – EricSchaefer Jan 25 '09 at 11:47

Have a look at foreach with index

share|improve this answer
Looks interesting. I'll have a closer look on that :) – Kosi2801 Mar 27 '10 at 8:21

There is a "variant" to pax' answer... ;-)

int i = -1;
for(String s : stringArray) {
    doSomethingWith(s, ++i);
}
share|improve this answer

I'm a little surprised no-one suggested the following (I admit it's a lazy approach...); If stringArray is a List of some sort, you could use something like stringArray.indexOf(S) to return a value for the current count.

Note: this assumes that the elements of the List are unique, or that it doesn't matter if they are non-unique (because in that case it will return the index of the first copy found).

There are situations in which that would be sufficient...

share|improve this answer
1  
With a performance approaching O(n²) for the whole loop it's very hard to imagine even a few situations where this would be superior to anything else. Sorry. – Kosi2801 Mar 5 '11 at 21:57

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.