|
Why Vector
I've been poking around a few Java forums, and notice a lot of people use Vector. Why? It's slow and designed for threaded operations. Why don't more people use ArrayList? I use Vectors nowadays only when I want to synchronize data across threads.
|