L'exemple de cet article décrit la méthode simple pour parcourir HashMap en Java. Partagez-le avec tout le monde pour votre référence. La méthode d'implémentation spécifique est la suivante :
import java.util.HashMap; import java.util.Iterator; import java.util.Set; public class HashSetTest { public static void main(String[] args) { HashMap map = new HashMap(); map.put("a", "aa"); map.put("b", "bb"); map.put("c", "cc"); map.put("d", "dd"); map.put("e", "ee"); Set set = map.keySet(); for(Iterator itr=set.iterator();itr.hasNext();){ String value =(String) itr.next(); String key = (String)map.get(value); System.out.println(value+"="+key); } } }
J'espère que cet article sera utile à la programmation Java de chacun.
Pour plus d'articles liés à la méthode simple de parcours de HashMap en Java, veuillez faire attention au site Web PHP chinois !