Satheesh Reddy
What is the difference between ArrayList and Vector? which one is better in Java
By Satheesh Reddy in Java on Jan 21 2014
  • Munesh Sharma
    Apr, 2014 15

    http://www.tutorialspoint.com/listtutorial/Difference-between-ArrayList-and-Vector-in-java/4680

    • 0
  • Shweta Lodha
    Feb, 2014 3

    You should normally use ArrayList - it offers better performance.Vector has just one "advantage" - it is synchronised for concurrent modification. But it turns out that this feature isn't very useful - if you are writing concurrent code, you typically need to lock at a much higher level of granularity than an individual collection class.As a result, Vector is often considered deprecated nowadays.

    • 0