当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.util.Dictionary.elements()用法及代码示例



描述

这个java.util.Dictionary.elements()方法返回此字典中值的枚举。

声明

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

public abstract Enumeration<V> elements()

参数

NA

返回值

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

异常

NA

示例

下面的例子展示了 java.util.Dictionary.elements() 方法的用法。

package com.tutorialspoint;

import java.util.*;

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

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

      // add 2 elements
      d.put(1, "Cocoa");
      d.put(4, "Chocolate" + "Bar");
      System.out.println("\"1\" is " + d.get(1));
      System.out.println("\"4\" is " + d.get(4));

      // generates a series of elements, one at a time
      for (Enumeration e = d.elements(); e.hasMoreElements();) {
         System.out.println(e.nextElement());
      }
   }
}

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

"1" is Cocoa
"4" is ChocolateBar
ChocolateBar
Cocoa

相关用法


注:本文由纯净天空筛选整理自 Java.util.Dictionary.elements() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。