We would like to know how to loop for each item in Map.
/*from w w w . jav a2 s. co m*/ import java.util.HashMap; import java.util.Map; public class Main { public static void main(String[] args) { Map<Integer, String> map = new HashMap<>(); for (int i = 0; i < 10; i++) { map.putIfAbsent(i, "val" + i); } map.forEach((id, val) -> System.out.println(val)); } }
The code above generates the following result.