C#集合類(HashTable, Dictionary, ArrayList)與HashTable執行緒安全
HashTable中的key/value均為object型別,由包含集合元素的儲存桶組成。儲存桶是 HashTable中各元素的虛擬子組,與大多數集合中進行的搜尋和檢索相比,儲存桶可令搜尋和檢索更為便捷。每一儲存桶都與一個雜湊程式碼關聯,該雜湊程式碼是使用雜湊函式生成的並基於該元素的鍵。HashTable的優點就在於其索引的方式,速度非常快。如果以任意型別鍵值訪問其中元素會快於其他集合,特別是當資料量特別大的時候,效率差別尤其大。
HashTable的應用場合有:做物件快取,樹遞迴演算法的替代,和各種需提升效率的場合。
//Hashtable sample
System.Collections.Hashtable ht = new System.Collections.Hashtable();
//--Be careful: Keys can't be duplicated, and can't be null----
ht.Add(1, "apple");
ht.Add(2, "banana");
ht.Add(3, "orange");
//Modify item value:
if(ht.ContainsKey(1))
ht[1] = "appleBad";
//The following code will return null oValue, no exception
object oValue = ht[5];
//traversal 1:
foreach (DictionaryEntry de in ht)
{
Console.WriteLine(de.Key);
Console.WriteLine(de.Value);
}
//traversal 2:
System.Collections.IDictionaryEnumerator d = ht.GetEnumerator();
while (d.MoveNext())
{
Console.WriteLine("key:{0} value:{1}", d.Entry.Key, d.Entry.Value);
}
//Clear items
ht.Clear();
System.Collections.Hashtable ht = new System.Collections.Hashtable();
//--Be careful: Keys can't be duplicated, and can't be null----
ht.Add(1, "apple");
ht.Add(2, "banana");
ht.Add(3, "orange");
//Modify item value:
if(ht.ContainsKey(1))
ht[1] = "appleBad";
//The following code will return null oValue, no exception
object oValue = ht[5];
//traversal 1:
foreach (DictionaryEntry de in ht)
{
Console.WriteLine(de.Key);
Console.WriteLine(de.Value);
}
//traversal 2:
System.Collections.IDictionaryEnumerator d = ht.GetEnumerator();
while (d.MoveNext())
{
Console.WriteLine("key:{0} value:{1}", d.Entry.Key, d.Entry.Value);
}
//Clear items
ht.Clear();
Dictionary和HashTable內部實現差不多,但前者無需裝箱拆箱操作,效率略高一點。
//Dictionary sample
System.Collections.Generic.Dictionary<int, string> fruits =
new System.Collections.Generic.Dictionary<int, string>();
fruits.Add(1, "apple");
fruits.Add(2, "banana");
fruits.Add(3, "orange");
foreach (int i in fruits.Keys)
{
Console.WriteLine("key:{0} value:{1}", i, fruits);
}
if (fruits.ContainsKey(1))
{
Console.WriteLine("contain this key.");
}
System.Collections.Generic.Dictionary<int, string> fruits =
new System.Collections.Generic.Dictionary<int, string>();
fruits.Add(1, "apple");
fruits.Add(2, "banana");
fruits.Add(3, "orange");
foreach (int i in fruits.Keys)
{
Console.WriteLine("key:{0} value:{1}", i, fruits);
}
if (fruits.ContainsKey(1))
{
Console.WriteLine("contain this key.");
}
ArrayList是一維變長陣列,內部值為object型別,效率一般:
//ArrayList
System.Collections.ArrayList list = new System.Collections.ArrayList();
list.Add(1);//object type
list.Add(2);
for (int i = 0; i < list.Count; i++)
{
Console.WriteLine(list[i]);
}
System.Collections.ArrayList list = new System.Collections.ArrayList();
list.Add(1);//object type
list.Add(2);
for (int i = 0; i < list.Count; i++)
{
Console.WriteLine(list[i]);
}
HashTable是經過優化的,訪問下標的物件先雜湊過,所以內部是無序雜湊的,保證了高效率,也就是說,其輸出不是按照開始加入的順序,而Dictionary遍歷輸出的順序,就是加入的順序,這點與Hashtable不同。如果一定要排序HashTable輸出,只能自己實現:
//Hashtable sorting
System.Collections.ArrayList akeys = new System.Collections.ArrayList(ht.Keys); //from Hashtable
akeys.Sort(); //Sort by leading letter
foreach (string skey in akeys)
{
Console.Write(skey + ":");
Console.WriteLine(ht[skey]);
}
System.Collections.ArrayList akeys = new System.Collections.ArrayList(ht.Keys); //from Hashtable
akeys.Sort(); //Sort by leading letter
foreach (string skey in akeys)
{
Console.Write(skey + ":");
Console.WriteLine(ht[skey]);
}
HashTable與執行緒安全:
為了保證在多執行緒的情況下的執行緒同步訪問安全,微軟提供了自動執行緒同步的HashTable:
如果 HashTable要允許併發讀但只能一個執行緒寫, 要這麼建立 HashTable例項:
//Thread safe HashTable
System.Collections.Hashtable htSyn = System.Collections.Hashtable.Synchronized(new System.Collections.Hashtable());
System.Collections.Hashtable htSyn = System.Collections.Hashtable.Synchronized(new System.Collections.Hashtable());
這樣, 如果有多個執行緒併發的企圖寫HashTable裡面的 item, 則同一時刻只能有一個執行緒寫, 其餘阻塞; 對讀的執行緒則不受影響。
另外一種方法就是使用lock語句,但要lock的不是HashTable,而是其SyncRoot;雖然不推薦這種方法,但效果一樣的,因為原始碼就是這樣實現的:
//Thread safe
private static System.Collections.Hashtable htCache = new System.Collections.Hashtable ();
public static void AccessCache ()
{
lock ( htCache.SyncRoot )
{
htCache.Add ( "key", "value" );
//Be careful: don't use foreach to operation on the whole collection
//Otherwise the collection won't be locked correctly even though indicated locked
//--by MSDN
}
}
//Is equivalent to 等同於 (lock is equivalent to Monitor.Enter and Exit()
public static void AccessCache ()
{
System.Threading.Monitor.Enter ( htCache.SyncRoot );
try
{
/* critical section */
htCache.Add ( "key", "value" );
//Be careful: don't use foreach to operation on the whole collection
//Otherwise the collection won't be locked correctly even though indicated locked
//--by MSDN
}
finally
{
System.Threading.Monitor.Exit ( htCache.SyncRoot );
}
}
分類: C#
相關文章
- C# 之 Hashtable 與 DictionaryC#
- c#之hashtable類C#
- 集合類HashMap,HashTable,ConcurrentHashMap區別?HashMap
- C# 雜湊表Hashtable與字典表Dictionary<K,V>的比較。C#
- HashMap為何執行緒不安全?HashMap,HashTable,ConcurrentHashMap對比HashMap執行緒
- hashtable 泛型 C#泛型C#
- c#遍歷HashTableC#
- Java集合之Hashtable原始碼解析Java原始碼
- Java 集合Hashtable原始碼深入解析Java原始碼
- Java併發-執行緒安全的集合類Java執行緒
- c# combox與hashtable_arraylist填充資料來源與下拉選單框示例C#
- 集合框架與執行緒安全解決框架執行緒
- ArrayList 的執行緒安全問題執行緒
- 集合框架-HashMap和Hashtable的區別框架HashMap
- Java執行緒安全的集合類:Map、List、SetJava執行緒
- 【Java多執行緒】執行緒安全的集合Java執行緒
- 每週一練 之 資料結構與演算法(Dictionary 和 HashTable)資料結構演算法
- .Net 執行緒安全集合執行緒
- Java集合詳解(五):Hashtable原理解析Java
- 【Java集合原始碼剖析】Hashtable原始碼剖析Java原始碼
- HashMap 與HashTable的區別HashMap
- ArrayList 為什麼執行緒不安全執行緒
- java中執行緒安全的集合Java執行緒
- C#中Hashtable和HashMap的區別C#HashMap
- 深度解析Hashtable
- HashTable與ConcurrentHashMap的區別HashMap
- 程式碼審查:從 ArrayList 說執行緒安全執行緒
- java各種集合的執行緒安全Java執行緒
- C#中HashTable簡介和使用用法C#
- Java執行緒(一):執行緒安全與不安全Java執行緒
- Hashtable原始碼分析原始碼
- C++ STL -- HashTableC++
- hashmap與Hashtable實現原理淺析HashMap
- 【多執行緒總結(二)-執行緒安全與執行緒同步】執行緒
- 從原始碼分析非執行緒安全集合類的不安全迭代器原始碼執行緒
- 多執行緒-以前的執行緒安全的類回顧執行緒
- 執行緒-集合-反射執行緒反射
- ArrayList執行緒不安全怎麼辦?(CopyOnWriteArrayList詳解)執行緒