Vector class example
This commit is contained in:
parent
8b8fda7d0b
commit
a4d768763b
|
@ -0,0 +1,21 @@
|
||||||
|
package com.baeldung.java.list;
|
||||||
|
|
||||||
|
import java.util.Enumeration;
|
||||||
|
import java.util.Vector;
|
||||||
|
|
||||||
|
public class VectorExample {
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
|
||||||
|
Vector<String> vector = new Vector<>();
|
||||||
|
vector.add("baeldung");
|
||||||
|
vector.add("Vector");
|
||||||
|
vector.add("example");
|
||||||
|
|
||||||
|
Enumeration e = vector.elements();
|
||||||
|
while(e.hasMoreElements()){
|
||||||
|
System.out.println(e.nextElement());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue