java Enumeration

Enumeration接口
Enumeration接口自己不是一個數據結構。可是,對其餘數據結構很是重要。 Enumeration接口定義了從一個數據結構獲得連續數據的手段。例如,Enumeration定義了一個名爲nextElement的方法,能夠用來從含有多個元素的數據結構中獲得的下一個元素。
Enumeration接口提供了一套標準的方法,因爲Enumeration是一個接口,它的角色侷限於爲數據結構提供方法協議。下面是一個使用的例子:
//e is an object that implements the Enumeration interface
while (e.hasMoreElements()) {
    Object o= e.nextElement();
    System.out.println(o);
java

實現該接口的對象由一系列的元素組成,能夠連續地調用nextElement()方法來獲得 Enumeration枚舉對象中的元素。Enumertion接口中僅定義了下面兩個方法。
·boolean hasMoreElemerts()
測試Enumeration枚舉對象中是否還含有元素,若是返回true,則表示還含有至少一個的元素。
·Object nextElement()
若是Bnumeration枚舉對象還含有元素,該方法獲得對象中的下一個元素。數組

【例】
package ch16;
import java.util.*;
class DemoEnumeration{
     public static void main(String[] args){
          //實例化MyDataStruct類型的對象
          MyDataStruct mds=new MyDataStruct();
          //獲得描述myDataStruct類型對象的enumeration對象
          Enumeration men =mds.getEnum();
         //使用對象循環顯示myDataStruct類型的對象中的每個元素
         while (men.hasMoreElements())
               System.out.println(men.nextElement());
    }
}數據結構

//MyEnumeration類實現Enumeration接口
class MyEnumeration implements Enumeration
{
      int count; // 計數器
      int length; //存儲的數組的長度
      Object[] dataArray; // 存儲數據數組的引用
      //構造器
      MyEnumeration(int count,int length,Object[] dataArray){
            this.count = count;
            this.length = length;
            this.dataArray = dataArray;
      }
      public boolean hasMoreElements() {
            return (count< length);
      }
      public Object nextElement() {
            return dataArray[count++];
      }
}
//MyDataStruct類用於實例化一個簡單的、能夠提供enumeration對象
//給使用程序的數據結果對象
class MyDataStruct
{
     String[] data;
     // 構造器
     MyDataStruct(){
          data = new String[4];
          data[0] ="zero";
          data[1]="one";
          data[2] ="two";
          data[3]="three";
     }
    // 返回一個enumeration對象給使用程序
    Enumeration getEnum() {
          return new MyEnumeration(0,data.length,data);
    }測試

}this

 

 

程序的運行結果爲:
zero
one
two
three對象

相關文章
相關標籤/搜索