java.util.Enumeration翻译

 
JavaTM 2 Platform
Std. Ed. v1.4.2

java.util
Interface Enumeration

All Known Subinterfaces:
NamingEnumeration
All Known Implementing Classes:
StringTokenizer

public interface Enumeration

An object that implements the Enumeration interface generates a series of elements, one at a time. Successive calls to the nextElement method return successive elements of the series. 实现Enumeration接口的对象生成元素序列。持续调用nextElement方法可以持续返回序列中的元素。

For example, to print all elements of a vector v: 例如,打印vector v中的所有元素:

     for (Enumeration e = v.elements() ; e.hasMoreElements() ;) {
         System.out.println(e.nextElement());
}

Methods are provided to enumerate through the elements of a vector, the keys of a hashtable, and the values in a hashtable. Enumerations are also used to specify the input streams to a SequenceInputStream. 提供了通过vector元素、hash表关键字和hash表关键值枚举元素的方法。 Enumeration也可用来指定输入流为SequenceInputStream。

NOTE: The functionality of this interface is duplicated by the Iterator interface. In addition, Iterator adds an optional remove operation, and has shorter method names. New implementations should consider using Iterator in preference to Enumeration. 注意:该接口和Iterator接口功能上重复。Iterator增加了可选的删除操作,方法名更短。 新的实现应当优先考虑Iterator而不是Enumeration。

Since:
JDK1.0
See Also:
Iterator , SequenceInputStream , nextElement() , Hashtable , Hashtable.elements() , Hashtable.keys() , Vector , Vector.elements()

Method Summary
 booleanhasMoreElements()
          Tests if this enumeration contains more elements. 测试枚举器中是否还含有元素。
 ObjectnextElement()
          Returns the next element of this enumeration if this enumeration object has at least one more element to provide. 如果枚举器对象中至少还有一个元素可提供时,返回枚举器的下一个元素。
 

Method Detail

hasMoreElements

public boolean hasMoreElements()
Tests if this enumeration contains more elements. 测试枚举器中是否还含有元素。

Returns:
true if and only if this enumeration object contains at least one more element to provide; false otherwise. 如果枚举器对象中至少还有一个元素可提供时,返回true,否则为false。

nextElement

public Object nextElement()
Returns the next element of this enumeration if this enumeration object has at least one more element to provide. 如果枚举器对象中至少还有一个元素可提供时,返回枚举器的下一个元素。

Returns:
the next element of this enumeration. 枚举器的下一个元素。
Throws:
NoSuchElementException - if no more elements exist. 如果没有元素存在时抛出。

JavaTM 2 Platform
Std. Ed. v1.4.2

Submit a bug or feature
For further API reference and developer documentation, see Java 2 SDK SE Developer Documentation . That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.

Copyright 2003 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值