Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Java

Idiom #244 Print a map

Print the contents of the map m to the standard output: keys and values.

m.forEach((k, v) -> {
    out.println(k + " = " + v);
});
import java.util.Map;
System.out.println(m);

m is a Map<K,V>
import static java.lang.System.out;
m.entrySet().forEach(out::println);
#include <map>
#include <iostream>
for (auto entry : m) {
	std::cout << entry.first << ": " << entry.second << "\n";
}

Range-based for loop since C++11.

New implementation...