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


Java Hashtable putAll()用法及代码示例


Hashtable类putAll()方法

  • putAll() 方法可在java.util包。
  • putAll() 方法用于将给定 Map 中存在的所有映射复制到此 Hashtable。
  • putAll() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • putAll() 方法在复制映射时不会抛出异常。

用法:

    public void putAll(Map m);

参数:

  • Map m– 映射存在于这个 Map (m) 中。

返回值:

该方法的返回类型是void,它什么都不返回。

例:

// Java program to demonstrate the example 
// of void putAll(Map m) method of Hashtable 

import java.util.*;

public class PutAllOfHashtable {
    public static void main(String[] args) {
        //Instantiate a linked hashmap
        //and hashtable object  
        Map lhm = new LinkedHashMap();
        Hashtable ht = new Hashtable();

        // By using put() method is to
        // add the linked values in an
        // linked hashmap lhm
        lhm.put(10, "C");
        lhm.put(20, "C++");
        lhm.put(30, "JAVA");
        lhm.put(40, "PHP");
        lhm.put(50, "SFDC");

        // Display linked hashmap
        System.out.println("lhm:" + lhm);

        // By using putAll() method is to 
        // copy all of the key-value pairs
        // exists in this linked hashmap and
        // paste it into this Hashtable

        ht.putAll(lhm);

        // Display Hashtable
        System.out.println("ht.putAll(lhm):" + ht);
    }
}

输出

lhm:{10=C, 20=C++, 30=JAVA, 40=PHP, 50=SFDC}
ht.putAll(lhm):{10=C, 20=C++, 30=JAVA, 40=PHP, 50=SFDC}


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java Hashtable putAll() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。