Append all elements of other Collection to Vector - Java Collection Framework

Java examples for Collection Framework:Vector

Description

Append all elements of other Collection to Vector

Demo Code

 
import java.util.Vector;
import java.util.ArrayList;
 
public class Main {
  public static void main(String[] args) {
    Vector v = new Vector();
    v.add("1");/*from  w ww . jav  a2 s  . c o m*/
    v.add("2");
    v.add("3");
   
    ArrayList arrayList = new ArrayList();
    arrayList.add("4");
    arrayList.add("5");
   
    v.addAll(arrayList);
   
    for(int i=0; i<v.size(); i++)
      System.out.println(v.get(i));
 
  }
}

Result


Related Tutorials