码迷,mamicode.com
首页 > 其他好文 > 详细

HashTable 应用

时间:2015-05-19 20:34:52      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

HashTable 是一个<key,value>容器,使用散列表存储数据。Hashtable中Key和Value均为object类型,可以在一个Hashtable中存储不同数据类型的键值对。

第一部分:查找分析

 

第二部分:操作

1,创建哈希表

Hashtable ht = new Hashtable();

2,添加,删除数据

ht.Add("ObjKey",  "ObjValue"); 

ht.Remove("ObjKey");

3,根据Key获取数据

string ObjValue= (string)ht["ObjKey"].ToString();

 4,遍历哈希表

IDictionaryEnumerator en = hshTable.GetEnumerator();  //  遍历哈希表所有的键,读出相应的值

while (en.MoveNext())            

{    

  string ObjKey = en.Key.ToString();            

  string ObjValue = en.Value.ToString();            

}

foreach(DictionaryEntry en in ht)
{
      string ObjKey = en.Key.ToString();            

  string ObjValue = en.Value.ToString();    
}

 示例代码

       Hashtable ht = new Hashtable();

            ht.Add(1, 2);
            ht.Add("a", "b");
            ht.Add(3, "t");


            foreach(DictionaryEntry de in ht)
            {
                Console.WriteLine("ht:key={0}, value={1}",de.Key ,de.Value);
            }

            Console.WriteLine(ht[1]);

            ht.Remove(1);

            if(!ht.Contains(1))
            {
                Console.WriteLine("Key=1 delete");
            }

            IDictionaryEnumerator en = ht.GetEnumerator();
            while (en.MoveNext())
            {
                Console.WriteLine("ht:key={0}, value={1}", en.Key, en.Value);
            }

 

HashTable 应用

标签:

原文地址:http://www.cnblogs.com/ljhdo/p/4515269.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!