When and why is it useful to use Enumeration?
什么时候使用Java类EDCOX1(0)是有用的?为什么使用它是有用的?
- 我想你可以看到这个答案:stackoverflow.com/questions/4709175/…
- 如果使用Java 1或1.1或为这些版本编写的API,枚举是有用的。
- 当-上个世纪:)
Enumeration在很大程度上已经过时。根据JavaDoc,它是一个接口,一次生成一系列元素。对nextElement方法的连续调用返回序列的连续元素。它是Iterator的前身(根据javadoc)
Iterator takes the place of Enumeration in the Java Collections Framework.
- 在Java 1.2(1998)中添加了Iterator;
- @彼得拉弗里,也就是加入收藏的时候。ApacheCommons集合提供了EnumerationIterator,可用于使Enumeration显示为Iterator。
- Enumeration是代码考古学家的