国产gaysexchina男同gay,japanrcep老熟妇乱子伦视频,吃奶呻吟打开双腿做受动态图,成人色网站,国产av一区二区三区最新精品

App下載
首頁javamapJava Collection - 如何將HashMap轉(zhuǎn)換為Hashtable

Java Collection - 如何將HashMap轉(zhuǎn)換為Hashtable

我們想知道如何將HashMap轉(zhuǎn)換為Hashtable。
import java.util.Enumeration;
import java.util.HashMap;
import java.util.Hashtable;

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

    HashMap<String, String> hMap = new HashMap<String, String>();

    hMap.put("1", "One");
    hMap.put("2", "Two");
    hMap.put("3", "Three");

    Hashtable<String, String> ht = new Hashtable<String, String>();
    ht.put("1", "REPLACED !!");
    ht.put("4", "Four");

    Enumeration e = ht.elements();
    while (e.hasMoreElements()){
      System.out.println(e.nextElement());
    }      

    ht.putAll(hMap);
    e = ht.elements();

    while (e.hasMoreElements()){
      System.out.println(e.nextElement());
    }      
  }
}