Map常用的遍历方法

package map;

import java.util.*;

public class Map01 {
    public static void main(String[] args) {
        Map map = new HashMap();
        map.put("贵州","贵阳");
        map.put("辽宁","沈阳");
        map.put("浙江","杭州");
        map.put(new String("浙江"),"杭州");
        /*Map map1 = new HashMap();
        map1.putAll(map);
        System.out.println(map1);
        System.out.println(map.get("贵州"));
        //map.clear();
        System.out.println(map.containsKey("贵州"));
        System.out.println(map.containsValue("贵阳"));*/

        //Hashmap遍历
        //1.通过EntrySet
        System.out.println("第一种方式EntrySet的迭代器:");
        Iterator iterator = map.entrySet().iterator();
        while (iterator.hasNext()) {
            Object next =  iterator.next();
            System.out.println(next);
        }
        //EntrySet的for增强
        System.out.println("EntrySet的for增强:");
        Set entrySet = map.entrySet();
        for (Object obj: entrySet){
            System.out.println(obj);
        }
        //2.先取出所有key, 通过key 取出对应的value
        Set keyset = map.keySet();
        System.out.println("第二种方式:");
        for (Object key: keyset) {
            System.out.println(key);
        }
        //3.直接使用values值
        System.out.println("第三种的for增强:");
        Collection valueset = map.values();
        for( Object obj: valueset) {
            System.out.println(obj);
        }
        System.out.println("第三种的迭代器:");
        Iterator iterator1 = valueset.iterator();
        while (iterator1.hasNext()) {
            Object next =  iterator1.next();
            System.out.println(next);
        }
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值