Existe-t-il un moyen dans la boucle for-each de Java for(String s : stringArray) { doSomethingWith(s); } pour savoir à quelle fréquence la boucle a déjà été traitée? Outre l'utilisation de l'ancienne et bien connue for(int i=0; i < boundary; i++)boucle, la construction int i = 0; for(String s :...