Première page
Précédent
Suivant
Dernière page
Résumé
Image
Boucle for each (2)
Exemples sur une collection
void affichage(
Collection<String>
col
) {
for (
String
i
:
col
)
{
System.out.println(
i
);
}
}
void affichage(
List
lis
) {
for (
Object
i
:
col
)
{
System.out.println(
i
);
}
}