在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