提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
使用枚举通过向量枚举
/**来 自 n o w j a v a . c o m - 时 代 Java**/ import java.util.Vector; import java.util.Enumeration; public class Main { public static void main(String[] args) { //create a Vector object Vector v = new Vector(); //populate the Vector v.add("One"); v.add("Two"); v.add("Three"); v.add("Four"); /** 时 代 J a v a - N o w J a v a . c o m **/ //Get Enumeration of Vector's elements using elements() method Enumeration e = v.elements(); System.out.println(