Map集合 遍历:lambda方式

Map集合 遍历:lambda方式_第1张图片

package day01;

import java.util.*;

public class Mapday1 {

    public static void main(String[] args) {

/*
HashMap 无序 不重复,会覆盖前面 无索引
 */
        System.out.println("--------------------");
        Map map = new HashMap<>();
        map.put("wwx1", 1);
        map.put("wwx2", 2);
        map.put("wwx3", 3);

      map.forEach((k,v)->{
          System.out.println(k+"->"+v);
              });

    }
}

Map集合 遍历:lambda方式_第2张图片

你可能感兴趣的:(java基础,java,开发语言)