Java.util.Dictionary.keys()


描述

所述java.util.Dictionary.keys()方法获得在该字典中的键的枚举。

声明

以下是java.util.Dictionary.keys()方法的声明

public abstract Enumeration<K> keys()

参数

NA

返回值

此方法返回此字典中键的枚举。

异常

NA

实例

以下示例显示了java.util.Dictionary.keys()方法的用法。

package com.tutorialspoint;

import java.util.*;

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

      // create a new hashtable
      Dictionary d = new Hashtable();

      // add some elements
      d.put("1", "Chocolate");
      d.put("2", "Cocoa");
      d.put("5", "Coffee");

      // return an enumeration of the keys from this dictionary.
      for (Enumeration e = d.keys(); e.hasMoreElements();) {
         System.out.println(e.nextElement());
      }
   }
}

让我们编译并运行上面的程序,这将产生以下结果

5
2
1