map的四种遍历方式

一、Map

 

String:key的类型

Object:value的类型,value可能是String,或者int类型,什么类型都可以

对于Map接口来说,本身不能直接迭代输出,因为Map的每个位置存放的是一对值(key,value),迭代每次只能输出一个值

需要先取到key的集合,再根据key迭代输出value

 

 

package com.xf.collection;

import org.junit.Test;

import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;

public class MyMap {


    @Test
    public void method1() {
        Map map = new HashMap<>();
        map.put("001", "hello");
        map.put("002", "world");
        map.put("003", "main");
        //方法1 keySet集合迭代
        Set keyset = map.keySet();
        Iterator it = keyset.iterator();
        while (it.hasNext()) {
            Object key = it.next();
            System.out.println(key + "=" + map.get(key));
        }
    }

    @Test
    public void method2() {
        Map map = new HashMap<>();
        map.put("001", "hello");
        map.put("002", "world");
        map.put("003", "main");
        //方法2 entrySet集合迭代
        Set> entrySet = map.entrySet();
        Iterator> it = entrySet.iterator();
        while (it.hasNext()) {
            Map.Entry entry = it.next();
            System.out.println(entry.getKey() + "=" + entry.getValue());
        }
    }

    @Test
    public void method3() {
        Map map = new HashMap<>();
        map.put("001", "hello");
        map.put("002", "world");
        map.put("003", "main");
        //方法3 keySet集合for-each循环
        for (String key : map.keySet()) {
            System.out.println(key + "=" + map.get(key));
        }
    }

    @Test
    public void method4() {
        Map map = new HashMap<>();
        map.put("001", "hello");
        map.put("002", "world");
        map.put("003", "main");
        //方法4 entrySet集合for-each循环
        for (Map.Entry entry : map.entrySet()) {
            System.out.println(entry.getKey() + "=" + entry.getValue());
        }
    }
}

四种方式中,method1 和 method2 是通过迭代器来显示完成的,method3 和 method4 是通过for-each来隐式的通过迭代器来完成的。

同时 method1 和 method3 是通过key的集合来完成的,method2 和 method4 是通过entry 的集合来完成的。

方法1 和方法2 的区别

一个是获取keySet ,一个是获取entrySet

推荐使用entrySet 的方式去获取,查看map通过key获取value的方法

 

public V get(Object key) {
    if (key == null)
        return getForNullKey();
    Entry entry = getEntry(key);

    return null == entry ? null : entry.getValue();
}

 

也是先获取该key对应的entry,然后再获取value值,所以,推荐使用entrySet 方法,再遍历entry集合的方式来遍历map

 

 

 

 

map 接口还有一个方法 values() ,由于仅能取到所有的value值,而取不到key值,所以在这里就算不上遍历map了,只能算上遍历map的value值。

 

扩展:

 

@Test
public void method5() {
    //遍历Map  map = new HashMap ();
    Map map = new HashMap();
    Set keys = map.keySet();
    Iterator iterator = keys.iterator();
    while (iterator.hasNext()) {
        String key = iterator.next();
        ArrayList arrayList = map.get(key);
        for (Object o : arrayList) {
            System.out.println(o);
        }
    }
}

@Test
public void method6() {
    //遍历Map  Map map1 = new HashMap();
    Map map1 = new HashMap();
    for (Map.Entry entry : map1.entrySet()) {
        String key = entry.getKey().toString();
        List list = (List) entry.getValue();
        for (String value : list) {
            System.out.println(key + "====" + value);
        }
    }
}

 

 

 

 

 

你可能感兴趣的:(java)