#Map的遍历的方法
public class MapForeach { public static void main(String[] args) { Mapmap =new HashMap<>(); map.put(1, "test1"); map.put(2, "test2"); map.put(3, "test3"); map.put(4, "test4"); for(Map.Entry entry : map.entrySet()) { System.out.println(entry.getKey()+"->"+entry.getValue()); } } }