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

学习Key与Value的集合hashtable

时间:2017-12-13 02:13:10      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:nsvalue   onclick   ide   tab   targe   console   .com   show   控制台   

你可以创建一个hashtable:

技术分享图片

 

你可以使用foreach方法,把hashtable的key与value循环写出来:
技术分享图片

 

在控制台屏幕输出:

技术分享图片

 

如果只需把key输出:

技术分享图片

 

如果只想把值循环输出:

技术分享图片

 

测试输出结果:

技术分享图片

 

 

往hashtable集合添加key与value:

技术分享图片

 

有添加就是移除:

技术分享图片

 

测试上面的添加Add和移除:

技术分享图片

 

key值为"A"已经被移除。

 

接下来,再练习2个方法,就是判断key或avlue是否已经存在集合:

技术分享图片

完整练习代码:

技术分享图片
 class Av
    {
        public Hashtable HashtableEntity = new Hashtable()
        {
            { "A", "Leo" },
            { "B", "Insus.NET" },
            { "C", "Jack" }
        };


        public void Output()
        {
            foreach (DictionaryEntry de in HashtableEntity)
            {
                Console.WriteLine(string.Format("Key: {0}; Value: {1}", de.Key, de.Value));
            }
        }        

        public void ForeachKey()
        {
            foreach (string key in HashtableEntity.Keys)
            {
                Console.WriteLine(key);
            }
        }

        public void ForeachValue()
        {
            foreach (string value in HashtableEntity.Values)
            {
                Console.WriteLine(value);
            }
        }
        
        public void Add(string key, string value)
        {
            HashtableEntity.Add(key, value);
        }

        public void Remove(string key)
        {
            HashtableEntity.Remove(key);
        }

        public bool isExitByKey(string key)
        {
            return HashtableEntity.ContainsKey(key);
        }

        public bool isExistByValue(string value)
        {
            return HashtableEntity.ContainsValue(value);
        }

    }
Source Code

 

学习Key与Value的集合hashtable

标签:nsvalue   onclick   ide   tab   targe   console   .com   show   控制台   

原文地址:http://www.cnblogs.com/insus/p/8030327.html

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