欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Arraylist的同步 thread 

程序员文章站 2022-03-28 23:24:03
...
vector 是同步的,ArrayList是非同步的,可以做同步处理,同步后两者的性能不好说。

注意,如果多个线程对同一个List操作,可能会把不同对象放置到同一个位置,所以需要对这个List同步,方法是
synchronized(arraylistA) {
    arraylistA.add(new SomeClass());
}

当然还有一个巧妙得方法,就是利用
List listA = Collections.synchronizedList(new ArrayList());
生成一个同步化List,但是注意 使用Iterator遍訪物件時,您仍必須實作同步化,因為這樣的List使用iterator()方法返回的Iterator物件,並沒有保證執行緒安全(Thread-safe):

List list = Collections.synchronizedList(new ArrayList());
synchronized(list) {
Iterator i = list.iterator();
while (i.hasNext()) {......}
}

2.单纯的读方法不需要synchronized关键字
相关标签: thread