Java如何使用列舉顯示HashTable的內容?

2019-10-16 22:28:40

在Java程式設計中,如何使用列舉顯示HashTable的內容?

以下範例使用Enumeration類的hasMoreElements()nestElement()方法來顯示HashTable的內容。

package com.yiibai;

import java.util.Enumeration;
import java.util.Hashtable;

public class DisplayHashTable {
    public static void main(String[] args) {
        Hashtable ht = new Hashtable();
        ht.put("1", "One");
        ht.put("2", "Two");
        ht.put("3", "Three");
        ht.put("4", "Four");
        ht.put("5", "Five");
        Enumeration e = ht.elements();

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

上述程式碼範例將產生以下結果 -

Five
Four
Three
Two
One