Add elements to this vector
boolean add(E e)
- Appends the specified element to the end of this Vector.
void add(int index, E element)
- Inserts the specified element at the specified position in this Vector.
boolean addAll(Collection<? extends E> c)
- Appends all of the elements in the specified Collection to the end of this Vector, in the order that they are returned by the specified Collection's Iterator.
boolean addAll(int index, Collection<? extends E> c)
- Inserts all of the elements in the specified Collection into this Vector at the specified position.
void addElement(E obj)
- Adds the specified component to the end of this vector, increasing its size by one.
void insertElementAt(E obj, int index)
- Inserts the specified object as a component in this vector at the specified index.
import java.util.Vector;
public class Main{
public static void main(String args[]) {
Vector v = new Vector();
for(int i = 0; i < 5; i++) {
v.addElement("java2s.com "+i);
}
for(int i = v.size() - 1; i >= 0; i--) {
System.out.print(v.elementAt(i) + " ");
}
}
}
The output:
java2s.com 4 java2s.com 3 java2s.com 2 java2s.com 1 java2s.com 0
Home
Java Book
Collection
Java Book
Collection
Vector:
- Vector class
- Create Vector objects
- Add elements to this vector
- Size and capacity
- Remove all elements from a vector
- Clone a vector
- Does it contain a certain element
- Copy elements in vector to an array
- Get Enumeration from this vector
- Compare two vectors
- Get element from vector
- Is vector empty
- Get element index
- Remove element from a vector
- Retain elements collection c has
- Replace element in a vector
- Get a sub list from a list
- Convert Vector to Array