当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java java.util.Vector.elements()用法及代码示例



描述

这个elements()方法用于返回此向量的组件的枚举。返回的 Enumeration 对象将在此向量中的相似索引位置生成所有项目。

声明

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

public Enumeration<E> elements()

参数

  • 不接受任何输入参数

返回值

它返回此向量的组件的枚举。

异常

NA

示例

下面的例子展示了 java.util.Vector.elements() 方法的用法。

package com.tutorialspoint;

import java.util.Vector;
import java.util.Enumeration;

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

相关用法


注:本文由纯净天空筛选整理自 java.util.Vector.elements() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。