Add elements to this vector

ReturnMethodSummary
booleanadd(E e)Appends the specified element to the end of this Vector.
voidadd(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.
voidaddElement(E obj)Adds the specified component to the end of this vector, increasing its size by one.
voidinsertElementAt(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
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.