- 后端给了一个完整的List,List中有不同类型的元素,需要用HashMap统计不同元素的数量。
public class MapLoopTest {
public static void main(String[] args) {
HashMap<String, Integer> map = new HashMap<>();
map.put("a", 3);
map.put("b", 4);
for (Map.Entry<String, Integer> entry : map.entrySet()) {
System.out.println(entry.getKey() + " " + entry.getValue());
}
}
}