“java hashmap pour boucle” Réponses codées

Java itération à travers hashmap

for (Map.Entry<String, String> entry : yourHashMap.entrySet()) {
	System.out.println(entry.getKey() + " = " + entry.getValue());
}
Rubahn Die U-Bahn

java hashmap pour boucle

for (Map.Entry<String, Object> entry : map.entrySet()) {
    String key = entry.getKey();
    Object value = entry.getValue();
    // ...
}
Nutty Newt

comment itérer hashmap java

Map<Integer, Integer> map = new HashMap<Integer, Integer>();
for (Map.Entry<Integer, Integer> entry : map.entrySet()) {
    System.out.println("Key = " + entry.getKey() + ", Value = " + entry.getValue());
}
Jolly Jaguar

Java Loop Hashmap

map.forEach((k, v) -> {
    System.out.format("key: %s, value: %d%n", k, v);
});
The Red Five

Réponses similaires à “java hashmap pour boucle”

Questions similaires à “java hashmap pour boucle”

Plus de réponses similaires à “java hashmap pour boucle” dans Java

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code