Collections.synchronizedList() 方法有什么用?它似乎无法同步列表
我正在尝试使用两个线程向添加值。我想要的是,当一个线程添加值时,另一个线程不应该干扰,所以我使用了该方法。但是,如果我不显式同步对象,则添加似乎是以不同步的方式完成的。String
ArrayList
Collections.synchronizedList
没有显式同步块:
public class SynTest {
public static void main(String []args){
final List<String> list=new ArrayList<String>();
final List<String> synList=Collections.synchronizedList(list);
final Object o=new Object();
Thread tOne=new Thread(new Runnable(){
@Override
public void run() {
//synchronized(o){
for(int i=0;i<100;i++){
System.out.println(synList.add("add one"+i)+ " one");
}
//}
}
});
Thread tTwo=new Thread(new Runnable(){
@Override
public void run() {
//synchronized(o){
for(int i=0;i<100;i++){
System.out.println(synList.add("add two"+i)+" two");
}
//}
}
});
tOne.start();
tTwo.start();
}
}
我得到的输出是:
true one
true two
true one
true two
true one
true two
true two
true one
true one
true one...
在显式同步块未注释的情况下,我在添加时停止了来自其他线程的干扰。一旦线程获取了锁,它就会一直执行,直到完成。
取消注释同步块后的示例输出:
true one
true one
true one
true one
true one
true one
true one
true one...
那么为什么不进行同步呢?Collections.synchronizedList()