Is there a way to access an iteration-counter in Java's for-each loop? - Stack Overflow
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 ...
stackoverflow.com |