Collection
├List 接口
│├LinkedList 鏈表
│├ArrayList 順序結構動態數組類
│└Vector 向量
│ └Stack 棧
└Set
Map
├HashTable
├HashMap
└WeakHashMap List接口
Vector和HashMap是線程安全的
LinkedList
由於同步需要花費時間
案例
java
at java
at java
at re
解決方法
調用Collections的同步List
List<String> items = Collections
public void remove() {
if (!items
return items
}
}
設置標志
LinkedList<String> items = new LinkedList<String>();
String flag=
public void remove() {
synchronized(flag){
if (!items
return items
}
}
}
From:http://tw.wingwit.com/Article/program/Java/hx/201311/27139.html