位置:首頁 > Java技術 > Java.util包 > java.util.Vector.elements()方法實例

java.util.Vector.elements()方法實例

elements() 方法用來返回這個向量的組件的枚舉。返回Enumeration對象將生成此向量的所有項目在類似的索引位置。

聲明

以下是java.util.Vector.elements()方法的聲明

public Enumeration<E> elements()

參數

  • 不采用任何輸入參數

返回值

它返回此向量的組件的枚舉。

異常

  • NA

例子

下麵的例子顯示java.util.Vector.elements()方法的使用。

package com.yiibai;

import java.util.Vector;

public class VectorDemo {
   public static void main(String[] args) {
      // create an empty Vector vec with an initial capacity of 4      
      Vector<Integer> vec = new Vector<Integer>(4);

      // use add() method to add elements in the vector
      vec.add(4);
      vec.add(3);
      vec.add(2);
      vec.add(1);      
      
      // adding elements into the enumeration
      Enumeration e=vec.elements();

      // let us print all the elements available in enumeration
      System.out.println("Numbers in the enumeration are :- "); 
      while (e.hasMoreElements()) {         
         System.out.println("Number = " + e.nextElement());
      }           
   }     
}

現在編譯和運行上麵的代碼示例,將產生以下結果。

Numbers in the enumeration are :- 
Number = 4
Number = 3
Number = 2
Number = 1