AdSense

AdSense3

Monday 21 September 2015

Difference between ArrayList and Vector

ArrayList and Vector both implements List interface and maintains insertion order.

But there are many differences between ArrayList and Vector classes that are given below.
ArrayListVector
1) ArrayList is not synchronized.Vector is synchronized.
2) ArrayList increments 50% of current array size if number of element exceeds from its capacity.Vector increments 100% means doubles the array size if total number of element exceeds than its capacity.
3) ArrayList is not a legacy class, it is introduced in JDK 1.2.Vector is a legacy class.
4) ArrayList is fast because it is non-synchronized.Vector is slow because it is synchronized i.e. in multithreading environment, it will hold the other threads in runnable or non-runnable state until current thread releases the lock of object.
5) ArrayList uses Iterator interface to traverse the elements.Vector uses Enumeration interface to traverse the elements. But it can use Iterator also.

Example of Java ArrayList

Let's see a simple example where we are using ArrayList to store and traverse the elements.
  1. import java.util.*;    
  2. class TestArrayList21{    
  3.  public static void main(String args[]){    
  4.      
  5.   List<String> al=new ArrayList<String>();//creating arraylist    
  6.   al.add("Sonoo");//adding object in arraylist    
  7.   al.add("Michael");    
  8.   al.add("James");    
  9.   al.add("Andy");    
  10.   //traversing elements using Iterator  
  11.   Iterator itr=al.iterator();  
  12.   while(itr.hasNext()){  
  13.    System.out.println(itr.next());  
  14.   }    
  15.  }    
  16. }    
Output:
Sonoo
Michael
James
Andy

Example of Java Vector

Let's see a simple example of java Vector class that uses Enumeration interface.
  1. import java.util.*;      
  2. class TestVector1{      
  3.  public static void main(String args[]){      
  4.   Vector<String> v=new Vector<String>();//creating vector  
  5.   v.add("umesh");//method of Collection  
  6.   v.addElement("irfan");//method of Vector  
  7.   v.addElement("kumar");  
  8.   //traversing elements using Enumeration  
  9.   Enumeration e=v.elements();  
  10.   while(e.hasMoreElements()){  
  11.    System.out.println(e.nextElement());  
  12.   }  
  13.  }      
  14. }      
Output:
umesh
irfan
kumar

No comments:

Post a Comment