参考:

java 常用的数据结构

一:Java的Map中的map.keySet()方法

该方法返回map中所有key值的列表。

今天再代码中看到了Map集合中的HashMap的map.keySet()方法,首先看一下这个方法的定义

    /** * Returns a {@link Set} view of the keys contained in this map. * The set is backed by the map, so changes to the map are * reflected in the set, and vice-versa. If the map is modified * while an iteration over the set is in progress (except through * the iterator's own <tt>remove</tt> operation), the results of * the iteration are undefined. The set supports element removal, * which removes the corresponding mapping from the map, via the * <tt>Iterator.remove</tt>, <tt>Set.remove</tt>, * <tt>removeAll</tt>, <tt>retainAll</tt>, and <tt>clear</tt> * operations. It does not support the <tt>add</tt> or <tt>addAll</tt> * operations. * * @return a set view of the keys contained in this map */
	 Set<K> keySet();

大致的意思描述如下:

1)返回此映射中包含的键的 Set视图。

2)这个 set 受到映射支持,所以对映射的更改可在此 set 中反映出来,反之亦然。

3)如果对该 set 进行迭代的同时修改了映射(通过迭代器自己的 remove 操作除外),则迭代结果是不确定的。

4)set 支持元素移除,通过 Iterator.remove、 Set.remove、 removeAll、retainAll 和 clear 操作可从映射中移除(删除)相应的映射关系。

5)set不支持 add 或 addAll 两种添加操作。

6)返回值是:map包含的键的 set 视图

代码的使用:

Map<Integer, String> map = new HashMap<>();
//下面可以使用map.keySet()方法
map.keySet();

测试代码:

public class SourceCode {
    public static void main(String[] args) {
 
        Map<String,String> map = new HashMap<String, String>();
 
        map.put("xiaocui1","gongchen");
        map.put("xiaocui2","daima");
        map.put("xiaocui3","xuexi");
        map.put("xiaocui4","dagong");
 
        System.out.println(map.keySet());
 
        System.out.println("-----分割线-----");
        for(String map1 : map.keySet()){
            String string = map.keySet().toString();
            System.out.println(string);
        }
    }
}

输出结果:

[xiaocui4, xiaocui1, xiaocui2, xiaocui3]
-----分割线-----
[xiaocui4, xiaocui1, xiaocui2, xiaocui3]
[xiaocui4, xiaocui1, xiaocui2, xiaocui3]
[xiaocui4, xiaocui1, xiaocui2, xiaocui3]
[xiaocui4, xiaocui1, xiaocui2, xiaocui3]

二:keyset()

三:Map对象中的keyset()、entryset()和Map.Entry

一 Map对象中的keySet()和entrySet()

1. keySet()

public static void main(String[] args) {
	Map<String, String> map = new HashMap<String, String>();
	map.put("01", "qwe");
	map.put("02", "asd");
	map.put("03", "zxc");
	// 先获取map集合的所有键的set集合,即为map中所有key值的集合
	Set<String> keySet = map.keySet();
	// 有了set集合,就可以获取其迭代器
	Iterator<String> it = keySet.iterator();
	while (it.hasNext()) {
		String key = it.next();
		// 有了键可以通过map集合的get方法获取其对应的值
		String value = map.get(key);
		// 获得key和value值
		System.out.println("key:" + key + "-->value:" + value);
	}
}

keySet()返回的是map对象的key值的set集合


2. entrySet()

public static void main(String[] args) {
		Map<String, String> map = new HashMap<String, String>();
		map.put("01", "qwe");
		map.put("02", "asd");
		map.put("03", "zxc");
		// 通过entrySet()方法将map集合中的映射关系取出(这个关系就是Map.Entry类型)
		Set<Map.Entry<String, String>> entrySet = map.entrySet();
		// 将关系集合entryset进行迭代,存放到迭代器中
		Iterator<Map.Entry<String, String>> it2 = entrySet.iterator();
		while (it2.hasNext()) {
			// 获取Map.Entry关系对象me
			Map.Entry<String, String> me = it2.next();
			// 通过关系对像获取key
			String key2 = me.getKey();
			// 通过关系对像获取value
			String value2 = me.getValue();
			System.out.println("key:" + key2 + "-->value:" + value2);
		}
	}

entrySet()返回映射所包含的映射关系的Set集合(一个关系就是一个键-值对),就是把(key-value)作为一个整体一对一对地存放到Set集合当中的。


3.总结

虽然使用keyset及entryset来进行遍历能取得相同的结果,但两者的遍历速度是有差别的。
               keySet():迭代后只能通过get()取key;再根据key值取value。
               entrySet():迭代后可以e.getKey(),e.getValue()取key和value。

同时,keySet()的速度比entrySet()慢了很多,也就是keySet方式遍历Map的性能不如entrySet性能好
为了提高性能,以后多考虑用entrySet()方式来进行遍历。

 

二 Map.Entry

 Map是java中的接口,Map.Entry是Map的一个内部接口。

Map提供了一些常用方法,如keySet()、entrySet()等方法,keySet()方法返回值是Map中key值的集合;entrySet()的返回值也是返回一个Set集合,此集合的类型为Map.Entry。

Map.Entry是Map声明的一个内部接口,此接口为泛型,定义为Entry<K,V>。它表示Map中的一个实体(一个key-value对)。接口中有getKey(),getValue方法。

遍历Map对象的常用方法除了以上两种外,还有一种是单纯的遍历value值。Map有一个values方法,返回的是value的Collection集合。通过遍历Collection也可以遍历value。

public static void main(String[] args) {
		Map<String, String> map = new HashMap<String, String>();
		map.put("01", "qwe");
		map.put("02", "asd");
		map.put("03", "zxc");
		// 创建一个Collection集合,存放map的value值
		Collection<String> c = map.values();
		// 通过遍历Collection也可以遍历value
		Iterator<String> it = c.iterator();
		// 该方法只能遍历value值,不能遍历key值
		while (it.hasNext()) {
			Object value = it.next();
			System.out.println("value:" + value);
		}
	}

在遍历Map对象时,先从Map对象中取出key值之后,还必须每次重复返回到Map中取得相对的值,这是很繁琐和费时的。

幸运的是,Map类提供了一个称为entrySet()的方法,这个方法返回一个Map.Entry实例化后的对象集。 接着,Map.Entry类提供了一个getKey()方法和一个getValue()方法。

Set entries = map.entrySet( );
if(entries != null) {
   	Iterator iterator = entries.iterator( );
   	while(iterator.hasNext( )) {
       	Map.Entry entry =iterator.next( );
       	Object key = entry.getKey( );
       	Object value = entry.getValue();
	}
}

尽管增加了一行代码,我们却省略了许多对Map不必要的“get”调用。同时,提供给开发人员一个同时保持了关键字和其对应的值的类。Map.Entry同时也提供了一个setValue()方法,程序员可以使用它修改map里面的值。

四:entrySet用法 以及遍历map的用法

keySet是键的集合,Set里面的类型即key的类型
entrySet是 键-值 对的集合,Set里面的类型是Map.Entry


五:Map集合中value()方法与keySet()、entrySet()区别

在Map集合中

values():方法是获取集合中的所有的值----没有键,没有对应关系,

KeySet():
将Map中所有的键存入到set集合中。因为set具备迭代器。所有可以迭代方式取出所有的键,再根据get方法。获取每一个键对应的值。 keySet():迭代后只能通过get()取key 

entrySet():

Set<Map.Entry<K,V>> entrySet() //返回此映射中包含的映射关系的 Set 视图。 Map.Entry表示映射关系。entrySet():迭代后可以e.getKey(),e.getValue()取key和value。返回的是Entry接口 。


下面通过例子看看:

Map<String,String> map = new HashMap<String,String>();
map.put("01", "zhangsan");
map.put("02", "lisi");
map.put("03", "wangwu");

Collection<String> collection = map.values();//返回值是个值的Collection集合
System.out.println(collection);
打印结果:
[zhangsan, lisi, wangwu]


Set<K> keySet() //返回值是个只存放key值的Set集合(集合中无序存放的)

Set<Map.Entry<K,V>> entrySet() //返回映射所包含的映射关系的Set集合(一个关系就是一个键-值对),就是把(key-value)作为一个整体一对一对地存放到Set集合当中的。


一. keySet()方式。

Map<String,String> map = new HashMap<String,String>();
                
map.put(01, “zhangsan”);
map.put(02, “lisi”);
map.put(03, “wangwu”);
   
   
Set<String> keySet = map.keySet();//先获取map集合的所有键的Set集合

Iterator<String> it = keySet.iterator();//有了Set集合,就可以获取其迭代器。
   
while(it.hasNext()){
	String key = it.next();
   	String value = map.get(key);//有了键可以通过map集合的get方法获取其对应的值。
           
   	System.out.println("key: “+key+”–>value: "+value);//获得key和value值
}

二. entrySet()方式:

Map<String,String> map = new HashMap<String,String>();
                
map.put(01, “zhangsan”);
map.put(02, “lisi”);
map.put(03, “wangwu”);

//通过entrySet()方法将map集合中的映射关系取出(这个关系就是Map.Entry类型)
Set<Map.Entry<String, String>> entrySet = map.entrySet();

//将关系集合entrySet进行迭代,存放到迭代器中 
Iterator<Map.Entry<String, String>> it2 = entrySet.iterator();
                
while(it2.hasNext()){
	Map.Entry<String, String> me = it2.next();//获取Map.Entry关系对象me
	String key2 = me.getKey();//通过关系对象获取key
	String value2 = me.getValue();//通过关系对象获取value
	                
	System.out.println("key: “+key2+”–>value: "+value2);
}

虽然使用keyset及entryset来进行遍历能取得相同的结果
但两者的遍历速度是有差别的

keySet():迭代后只能通过get()取key。 
entrySet():迭代后可以e.getKey(),e.getValue()取key和value。返回的是Entry接口 

说明:keySet()的速度比entrySet()慢了很多,也就是keySet方式遍历Map的性能不如entrySet性能好
为了提高性能,以后多考虑用entrySet()方式来进行遍历。

六:Java中Map的 entrySet() 详解以及用法(四种遍历map的方式)

1. Entry

由于Map中存放的元素均为键值对,故每一个键值对必然存在一个映射关系。 
Map中采用Entry内部类来表示一个映射项,映射项包含Key和Value (我们总说键值对键值对, 每一个键值对也就是一个Entry)
Map.Entry里面包含getKey()和getValue()方法

Iterator<Map.Entry<Integer, Integer>> it=map.entrySet().iterator();
while(it.hasNext()) {
    Map.Entry<Integer,Integer> entry=it.next();
    int key=entry.getKey();
    int value=entry.getValue();
    System.out.println(key+" "+value);
}

2. entrySet

entrySet是 java中 键-值 对的集合,Set里面的类型是Map.Entry,一般可以通过map.entrySet()得到。

  • entrySet实现了Set接口,里面存放的是键值对。一个K对应一个V。

用来遍历map的一种方法。

Set<Map.Entry<String, String>> entryseSet=map.entrySet();
 
for (Map.Entry<String, String> entry:entryseSet) {
 
    System.out.println(entry.getKey()+","+entry.getValue());
 
}

即通过getKey()得到K,getValue()得到V。

3. keySet

还有一种是keySet, keySet是键的集合,Set里面的类型即key的类型

Set<String> set = map.keySet();
 
for (String s:set) {
 
    System.out.println(s+","+map.get(s));
 
}

4. 四种遍历Map方式:

public static void main(String[] args) {
 
    Map<String, String> map = new HashMap<String, String>();
    map.put("1", "value1");
    map.put("2", "value2");
    map.put("3", "value3");
  
    //第一种:普遍使用,二次取值
    System.out.println("通过Map.keySet遍历key和value:");
    for (String key : map.keySet()) {
        System.out.println("key= "+ key + " and value= " + map.get(key));
    }
  
    //第二种
    System.out.println("通过Map.entrySet使用iterator遍历key和value:");
    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() + " and value= " + entry.getValue());
    }
  
    //第三种:推荐,尤其是容量大时
    System.out.println("通过Map.entrySet遍历key和value");
    for (Map.Entry<String, String> entry : map.entrySet()) {
        System.out.println("key= " + entry.getKey() + " and value= " + entry.getValue());
    }
 
    //第四种
    System.out.println("通过Map.values()遍历所有的value,但不能遍历key");
    for (String v : map.values()) {
        System.out.println("value= " + v);
    }
 }