Showing posts with label Vector. Show all posts
Showing posts with label Vector. Show all posts

Difference between ArrayList and Vector in Java

ArrayList and Vector are the important collection classes which used in Java. And also widely asked in interview about their difference and similarities between these 2 classes. Before looking into the difference and similarities between these...

Vector and ArrayList

In this tutorial we will see about Vector and ArrayList in java. Both Vector and ArrayList shares common data structure "Array" internally. Synchronized and non-synchronized By default Vector is Synchronized and ArrayList is not...