學習Key與Value的集合hashtable

你能夠建立一個hashtable:ide

 

你可使用foreach方法,把hashtable的key與value循環寫出來:
測試

 

在控制檯屏幕輸出:spa

 

若是隻需把key輸出:3d

 

若是隻想把值循環輸出:code

 

測試輸出結果:orm

 

 

往hashtable集合添加key與value:blog

 

有添加就是移除:get

 

測試上面的添加Add和移除:string

 

key值爲"A"已經被移除。hash

 

接下來,再練習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
相關文章
相關標籤/搜索