遍历Map的方式有很多,通常场景下我们需要的是遍历Map中的Key和Value,那么推荐使用的、效率最高的方式是:public static void main(String[] args){HashMap hm = new HashMap();hm.put("111", "222");Set> entrySet = hm.entrySet();Iterator> iter = entrySet.iterator();while (iter.hasNext()){Map.Entry entry = iter.next();System.out.println(entry.getKey() + "\t" + entry.getValue());}}