Java中的字典elements()方法示例
Java中的Dictionary类的keys()方法用于获取dictionary中存在的值的枚举。
语法:
Enumeration enu = DICTIONARY.elements()
参数: 该方法不接受任何参数。
返回值: 该方法返回字典的值的枚举。
以下程序用于说明java.util.Dictionary.elements()方法的工作方式:
程序1:
// 演示elements()方法的Java代码
import java.util.*;
public class Dictionary_Demo {
public static void main(String[] args)
{
// 创建一个空字典
Dictionary<Integer, String> dict
= new Hashtable<Integer, String>();
// 向字典中插入元素
dict.put(10, "Geeks");
dict.put(15, "4");
dict.put(20, "Geeks");
dict.put(25, "Welcomes");
dict.put(30, "You");
// 显示字典
System.out.println("The Dictionary is: " + dict);
// 创建一个空枚举来存储
Enumeration enu = dict.elements();
System.out.println("The enumeration of values are:");
// 显示枚举
while (enu.hasMoreElements()) {
System.out.println(enu.nextElement());
}
}
}
The Dictionary is: {10=Geeks, 20=Geeks, 30=You, 15=4, 25=Welcomes}
The enumeration of values are:
Geeks
Geeks
You
4
Welcomes
程序2:
// 演示elements()方法的Java代码
import java.util.*;
public class Dictionary_Demo {
public static void main(String[] args)
{
// 创建一个空字典
Dictionary<String, Integer> dict
= new Hashtable<String, Integer>();
// 向表中插入元素
dict.put("Geeks", 10);
dict.put("4", 15);
dict.put("Geeks", 20);
dict.put("Welcomes", 25);
dict.put("You", 30);
// 显示字典
System.out.println("The Dictionary is: " + dict);
// 创建一个空枚举来存储
Enumeration enu = dict.elements();
System.out.println("The enumeration of values are:");
// 显示枚举
while (enu.hasMoreElements()) {
System.out.println(enu.nextElement());
}
}
}
The Dictionary is: {You=30, Welcomes=25, 4=15, Geeks=20}
The enumeration of values are:
30
25
15
20