1.

What Is The Difference Between Arraylist And Vector?

Answer»

ArrayList:

  • ArrayList is not synchronized.
  • ArrayList is not a LEGACY class.
  • ArrayList INCREASES its size by 50% of the array size.

VECTOR:

  • Vector is synchronized.
  • Vector is a legacy class.
  • Vector increases its size by doubling the array size.

ArrayList:

Vector:



Discussion

No Comment Found