當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。