Enumeration是一个接口,主要提供了枚举集合对象中所有对象的功能。
建议使用Iterator接口,它提供了和Enumeration一样的功能,而且还有删除集合元素的方法。hasMoreElements()方法用来判断Enumeration接口中是否还有元素,返回一个boolean值。

解决方案 »

  1.   

    Enumeration 是一个快要过时的接口,但在servlet里和ejb里还有一些函数的返回值是Enumeration类型的。所以还是要了解的。楼上的兄弟说的对。其实Enumberation和Iterator还是有区别的。建议看JDK1.4的文档你要是没有jdk的文档,可以去java。sun。com下载。
    搞java一定要有jdk文档的
      

  2.   

    嗬嗬,很基本和重要的集合知识,建议楼主看看Think in java,补一下基础知识!
      

  3.   

    同意mq612(理想) 和 seikoo(上下求索) !
    Enumeration 是一个快要过时的接口
      

  4.   

    对。我就在看think in java 
      <------ 仁者见仁,智者见智------>
      

  5.   

    java.util 
    Interface Enumeration
    All Known Subinterfaces: 
    NamingEnumeration 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. For example, to print all elements of a 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. 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. 
      

  6.   

    java 1.1 的遗留物,请不要继续使用。在java 2中使用Iterator来替代。
    引用楼上的javadoc:
    <<
    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.
    >>