希望实现的功能是为List
提供一个原子操作:若没有则添加。因为ArrayList
本身不是线程安全的,所以通过集合Collections.synchronizedList
将其转换为一个线程安全的类,然后通过一个辅助的方法来为List
实现这么个功能。
class BadListHelper <E> {
public List<E> list = Collections.synchronizedList(new ArrayList<E>());
public synchronized boolean putIfAbsent(E x) {
boolean absent = !list.contains(x);
if (absent)
list.add(x);
return absent;
}
}
这个代码是线程不安全的吗?如果是,可以证明一下吗?谢谢
用
ConcurrentSkipListSet
不就行了不重复的List,不就是个Set?,需要原子,不就是线程安全的Set?