Exemple de la boucle ‘forin’ avec une Collection

Author:


{filelink=4413}

import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

public class ForInDemo {

  public static void main(String[] args) {

    // Le boucle que nous allons parcourir.
    List listMot = new ArrayList();
    Set wordset = new HashSet();

    System.out.println("Assigner les argument � la liste dynamique");
    for(String word : args) {
      System.out.print(word + " ");
      listMot.add(word);
      wordset.add(word);
    }

    System.out.println();

    System.out.println("Afficher les mots de la list 'listMot' ");
    for(Object word : listMot) {
      System.out.print((String)word + " ");
    }

    System.out.println();

    System.out.println("Afficher les mots de la list 'wordset' ");
    for(Object word : wordset) {
      System.out.print((String)word + " ");
    }
  }
}

Leave a Reply

Your email address will not be published. Required fields are marked *