Map集合的遍历:键值对

Map集合的遍历:键值对_第1张图片

 

Map集合的遍历:键值对_第2张图片

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集合提供entrySet方法,把Map集合转换成键值对类型的Set集合
        Set> entries = map.entrySet();

        for (Map.Entry entry : entries) {
            String key = entry.getKey();
            Integer value = entry.getValue();
            System.out.println(key+"-->>"+value);
        }


    }
}

Map集合的遍历:键值对_第3张图片

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