Java IdentityHashMap putAll() 方法



描述

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

声明

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

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

参数

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

返回值

方法调用返回与键关联的先前值,如果键没有映射,则返回 null。

异常

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

向 Integer,Integer 对的 IdentityHashMap 添加多个条目示例

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

package com.tutorialspoint;

import java.util.IdentityHashMap;

public class IdentityHashMapDemo {
   public static void main(String args[]) {
      
      // create identity map
      IdentityHashMap<Integer,Integer> newmap = new IdentityHashMap<>();
	  IdentityHashMap<Integer,Integer> newmap2 = new IdentityHashMap<>();
 
      // populate identity 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: {2=2, 3=3, 1=1}
Map elements: {2=2, 3=3, 1=1}

向 Integer,String 对的 IdentityHashMap 添加多个条目示例

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

package com.tutorialspoint;

import java.util.IdentityHashMap;

public class IdentityHashMapDemo {
   public static void main(String args[]) {
      
      // create identity map
      IdentityHashMap<Integer,String> newmap = new IdentityHashMap<>();
	  IdentityHashMap<Integer,String> newmap2 = new IdentityHashMap<>();
      // populate identity 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: {2=point, 3=is best, 1=tutorials}
Map elements: {2=point, 3=is best, 1=tutorials}

向 Integer,Object 对的 IdentityHashMap 添加多个条目示例

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

package com.tutorialspoint;

import java.util.IdentityHashMap;

public class IdentityHashMapDemo {
   public static void main(String args[]) {
      
      // create identity map
      IdentityHashMap<Integer,Student> newmap = new IdentityHashMap<>();
      IdentityHashMap<Integer,Student> newmap2 = new IdentityHashMap<>();
      // populate identity 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 ], 3=[ 3, Adam ], 2=[ 2, Robert ]}
Map elements: {1=[ 1, Julie ], 3=[ 3, Adam ], 2=[ 2, Robert ]}
java_util_identityhashmap.htm
广告