Java HashMap putAll() 方法



描述

Java HashMap putAll(Map<? extends K,? extends V> m) 方法用于将指定映射中的所有映射复制到此映射。

声明

以下是 java.util.HashMap.putAll() 方法的声明。

public void putAll(Map<? extends K,? extends V> m)

参数

m − 这是要存储在此映射中的映射。

返回值

异常

NullPointerException − 如果指定的映射为空,则抛出此异常。

在 Integer, Integer 对的 HashMap 中添加多个键值对示例

以下示例演示了 Java HashMap putAll() 方法的使用,用于在映射中放入一些值。我们创建了一个 Integer,Integer 对的映射对象。然后使用 put() 方法添加一些条目,然后打印映射。使用 putAll() 方法填充一个新映射,然后打印。

package com.tutorialspoint;

import java.util.HashMap;

public class HashMapDemo {
   public static void main(String args[]) {
      
      // create hash map
      HashMap<Integer,Integer> newmap = new HashMap<>();
	  HashMap<Integer,Integer> newmap2 = new HashMap<>();
 
      // populate hash map
      newmap.put(1, 1);
      newmap.put(2, 2);
      newmap.put(3, 3); 

      System.out.println("Map elements: " + newmap);
      newmap2.putAll(newmap);
      System.out.println("Map elements: " + newmap2); 
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果。

Map elements: {1=1, 2=2, 3=3}
Map elements: {1=1, 2=2, 3=3}

在 Integer, String 对的 HashMap 中添加多个键值对示例

以下示例演示了 Java HashMap putAll() 方法的使用,用于在映射中放入一些值。我们创建了一个 Integer,String 对的映射对象。然后使用 put() 方法添加一些条目,然后打印映射。使用 putAll() 方法填充一个新映射,然后打印。

package com.tutorialspoint;

import java.util.HashMap;

public class HashMapDemo {
   public static void main(String args[]) {
      
      // create hash map
      HashMap<Integer,String> newmap = new HashMap<>();
	  HashMap<Integer,String> newmap2 = new HashMap<>();
      // populate hash map
      newmap.put(1, "tutorials");
      newmap.put(2, "point");
      newmap.put(3, "is best"); 

      System.out.println("Map elements: " + newmap);
      newmap2.putAll(newmap);
      System.out.println("Map elements: " + newmap2);
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果。

Map elements: {1=tutorials, 2=point, 3=is best}
Map elements: {1=tutorials, 2=point, 3=is best}

在 Integer, Student 对的 HashMap 中添加多个键值对示例

以下示例演示了 Java HashMap putAll() 方法的使用,用于在映射中放入一些值。我们创建了一个 Integer,Student 对的映射对象。然后使用 put() 方法添加一些条目,然后打印映射。使用 putAll() 方法填充一个新映射,然后打印。

package com.tutorialspoint;

import java.util.HashMap;

public class HashMapDemo {
   public static void main(String args[]) {
      
      // create hash map
      HashMap<Integer,Student> newmap = new HashMap<>();
      HashMap<Integer,Student> newmap2 = new HashMap<>();
      // populate hash map
      newmap.put(1, new Student(1, "Julie"));
      newmap.put(2, new Student(2, "Robert"));
      newmap.put(3, new Student(3, "Adam"));

      System.out.println("Map elements: " + newmap);
      newmap2.putAll(newmap);
      System.out.println("Map elements: " + newmap2);
   }
}
class Student {
   int rollNo;
   String name;

   Student(int rollNo, String name){
      this.rollNo = rollNo;
      this.name = name;
   }

   @Override
   public String toString() {
      return "[ " + this.rollNo + ", " + this.name + " ]";
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果。

Map elements: {1=[ 1, Julie ], 2=[ 2, Robert ], 3=[ 3, Adam ]}
Map elements: {1=[ 1, Julie ], 2=[ 2, Robert ], 3=[ 3, Adam ]}
java_util_hashmap.htm
广告