次の例は、Collection クラスの iterator() メソッドを使用してコレクションを走査する方法を示しています:
/* author by w3cschool.cc Main.java */import java.util.*;import java.util.*;public class Main { public static void main(String[] args) { HashMap< String, String> hMap = new HashMap< String, String>(); hMap.put("1", "1st"); hMap.put("2", "2nd"); hMap.put("3", "3rd"); Collection cl = hMap.values(); Iterator itr = cl.iterator(); while (itr.hasNext()) { System.out.println(itr.next()); } }}
上記のコードを実行した出力結果は次のとおりです:
3rd 2nd 1st
上記は Java サンプルの内容です - HashMap関連コンテンツの詳細については、PHP Chinese Net (www.php.cn) に注目してください。