当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java 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 关联的先前值,如果没有 key 的映射,则返回 null。

异常

NullPointerException- 如果指定的Map为空,则抛出此问题。

示例

下面的例子展示了 java.util.IdentityHashMap.putAll() 的用法

package com.tutorialspoint;

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:{2=util, 3=package, 1=java}
Value of ihmap2 before:{}
Value of ihmap2 after:{2=util, 3=package, 1=java}

相关用法


注:本文由纯净天空筛选整理自 java.util.IdentityHashMap.putAll() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。