Java Hashtable putAll()方法
java.util.Hashtable.putAll() 用于将所有键值对从map复制到Hashtable。
1 语法
public void putAll(Map<? extends K,? extends V> t)
2 参数
t:这是要存储在Hashtable中的Map。
3 返回值
无
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.Hashtable.putAll()方法的例子
*/
import java.util.*;
public class Demo {
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: {1=TP, 2=IS, 3=BEST}
Hash table value after put all: {3=BEST, 2=IS, 1=TP}
热门文章
优秀文章