Première page Précédent Suivant Dernière page Résumé Image
Boucle for each (1)
But
- Parcourir simplement tous les éléments
- D'un tableau
- D'une collection
Exemple sur un tableau
- int somme(int [] tab) {
- int resultat = 0;
- for (int i : tab) {
- }
- return resultat;
- }