java.util.Hashtable.putAll()


描述

所述putAll(Map<? extends K,? extends V> t)的方法用于所有映射的从指定的地图此Hashtable复制。

声明

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

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

参数

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

返回值

NA

异常

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

实例

以下示例显示了java.util.Hashtable.putAll()的用法

package com.tutorialspoint;

import java.util.*;

public class HashTableDemo {
   public static void main(String args[]) {

      // create hash table
      Hashtable htable1 = new Hashtable();

      // create Map
      Map map = new HashMap();

      // put values in map
      map.put("1","TP");
      map.put("2","IS");
      map.put("3","BEST");

      System.out.println("Initial hash table value: "+htable1);
      System.out.println("Map values: "+map);

      // put map values in table
      htable1.putAll(map);
      System.out.println("Hash table value after put all: "+htable1);
   }    
}

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

Initial hash table value: {}
Map values: {3=BEST, 2=IS, 1=TP}
Hash table value after put all: {3=BEST, 2=IS, 1=TP}