+ 7
what is the different between the Vector class and ArrayList class in java?
1 Answer
+ 2
The difference lies in an attribute called synchronized. But unless you're working with threads this doesn't matter.
Vectors as a synchronized class are slightly slower than the ArrayList in the most cases.