位置:首页 > Java技术 > Java.util包 > java.util.IdentityHashMap.putAll()方法实例

java.util.IdentityHashMap.putAll()方法实例

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

声明

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

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

参数

  • t--这是将要存储在此映射的映射。

返回值

该方法调用返回与key相关联的前一个值,则返回null,如果没有键的映射关系。

异常

  • NullPointerException--如果指定映射为null,这被抛出。

例子

下面的例子显示java.util.IdentityHashMap.putAll()方法的使用

package com.yiibai;

import java.util.*;

public class IdentityHashMapDemo {
   public static void main(String args[]) {
      // create 2 identity hash maps
      IdentityHashMap ihmap1 = new IdentityHashMap();
      IdentityHashMap ihmap2 = new IdentityHashMap();
           
      // populate the ihmap1
      ihmap1.put(1, "java");
      ihmap1.put(2, "util");
      ihmap1.put(3, "package");
      
      System.out.println("Value of ihmap1 before: " + ihmap1);
      System.out.println("Value of ihmap2 before: " + ihmap2);
      
      // put all values from ihmap1 to ihmap2
      ihmap2.putAll(ihmap1);
      
      System.out.println("Value of ihmap2 after: " + ihmap2);
   }    
}

现在编译和运行上面的代码示例,将产生以下结果。

Value of ihmap1 before: {1=java, 3=package, 2=util}
Value of ihmap2 before: {}
Value of ihmap2 after: {1=java, 3=package, 2=util}