Map.putAll()用法

Posted 雨花梦

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Map.putAll()用法相关的知识,希望对你有一定的参考价值。

import Java.util.HashMap;

public class Map_putAllTest {
public static void main(String[] args){
   //两个map具有不同的key
   HashMap map1=new HashMap(); 
   map1.put("1", "A"); 
   HashMap map2 = new HashMap(); 
   map2.put("2", "B"); 
   map2.put("3", "C"); 
   map1.putAll(map2); 
   System.out.println(map1);
   //两个map具有重复的key
   HashMap map3=new HashMap(); 
   map3.put("1", "A"); 
   HashMap map4 = new HashMap(); 
   map4.put("1", "B"); 
   map4.put("3", "C"); 
   map3.putAll(map4); 
   System.out.println(map3);
}
}
/* 输出结果:
* {3=C, 2=B, 1=A}
* {3=C, 1=B}
* 结论:putAll可以合并两个MAP,只不过如果有相同的key那么用后面的覆盖前面的
* */

以上是关于Map.putAll()用法的主要内容,如果未能解决你的问题,请参考以下文章

如何合并两个JAVA Map

集合的空指针问题NullPointerException

集合的空指针问题NullPointerException

集合的空指针问题NullPointerException

With的用法?

各种STL的基本用法