Collections.synchronizedList vs Vector

时间:2014-01-07 07:40:32

标签: java multithreading collections thread-safety

我想使用集合类来添加,删除和检索多个线程中的对象。

Collections.synchronizedListVector这两个类都是线程安全的。有没有人告诉我Collections.synchronizedListVector之间的区别,并解释我应该何时使用VectorCollections.synchronizedList

1 个答案:

答案 0 :(得分:6)

以下是关于为什么Vector是过时/弃用类的几句话:Why is Java Vector class considered obsolete or deprecated?

一般来说,他们之间存在差异:In java, Vector and Collections.synchronizedList are all synchronized, what's the difference?