java中遍历map的四种方法(含Lambda表达式)

public class MapTest {

   public static void main(String[] args) {
      Map<String, String> map = new HashMap<String, String>();
      map.put("a", "A");
      map.put("b", "B");

      // 1. entrySet遍历,在键和值都需要时使用(最常用)
      for (Map.Entry<String, String> entry : map.entrySet()) {
         System.out.println("key = " + entry.getKey() + ", value = " + entry.getValue());
      }

      // 2. 通过keySet或values来实现遍历,性能略低于第一种方式
      // 遍历map中的键
      for (String key : map.keySet()) {
         System.out.println("key = " + key);
      }
      // 遍历map中的值
      for (String value : map.values()) {
         System.out.println("key = " + value);
      }

      // 3. 使用Iterator遍历
      Iterator<Map.Entry<String, String>> it = map.entrySet().iterator();
      while (it.hasNext()) {
         Map.Entry<String, String> entry = it.next();
         System.out.println("key = " + entry.getKey() + ", value = " + entry.getValue());
      }

      // 4. java8 Lambda
      // java8提供了Lambda表达式支持,语法看起来更简洁,可以同时拿到key和value,
      // 不过,经测试,性能低于entrySet,所以更推荐用entrySet的方式
      map.forEach((key, value) -> {
         System.out.println(key + ":" + value);
      });
   }

}

觉得内容还不错?打赏个钢镚鼓励鼓励!!👍