C#雜湊表的例項

菜鸟的奋斗军發表於2024-12-02

Hashtable ht = new Hashtable();
//鍵值對集合,雜湊表Hashtable
// key是唯一的 value是可以重複的
//資料被高頻率查詢,資料量大,資料型別不唯一

ht.Add(0, "Hello");
ht.Add("你好", "我好");
ht.Add("你", "大記號");
ht.Add(3.5, 5);
ht.Remove(2.5);
//ht.Clear();
bool isHave = ht.Contains("你");
Console.WriteLine(isHave);
Console.WriteLine(ht["你"]);

//ArrayList list = new ArrayList();
//list = (ArrayList)ht.Keys;
foreach (var item in ht.Keys)
{
//var 萬能的資料型別

 Console.WriteLine(ht[item]);

}

相關文章