C#中Dictionary泛型集合7种常见的用法
要使用Dictionary集合,需要导入C#泛型命名空间
System.Collections.Generic(程序集:mscorlib)
Dictionary的描述
1、从一组键(Key)到一组值(Value)的映射,每一个添加项都是由一个值及其相关连的键组成
2、任何键都必须是唯一的
3、键不能为空引用null(VB中的Nothing),若值为引用类型,则可以为空值
4、Key和Value可以是任何类型(string,int,customclass等)
Dictionary常用用法:以key的类型为int,value的类型为string为例
1、创建及初始化
Dictionary<int,string>myDictionary=newDictionary<int,string>();
2、添加元素
myDictionary.Add(1,"C#"); myDictionary.Add(2,"C++"); myDictionary.Add(3,"ASP.NET"); myDictionary.Add(4,"MVC");
3、通过Key查找元素
if(myDictionary.ContainsKey(1)) { Console.WriteLine("Key:{0},Value:{1}","1",myDictionary[1]); }
4、通过KeyValuePair遍历元素
foreach(KeyValuePair<int,string>kvpinmyDictionary) { Console.WriteLine("Key={0},Value={1}",kvp.Key,kvp.Value); }
5、仅遍历键Keys属性
Dictionary<int,string>.KeyCollectionkeyCol=myDictionary.Keys; foreach(intkeyinkeyCol) { Console.WriteLine("Key={0}",key); }
6、仅遍历值Valus属性
Dictionary<int,string>.ValueCollectionvalueCol=myDictionary.Values; foreach(stringvalueinvalueCol) { Console.WriteLine("Value={0}",value); }
7、通过Remove方法移除指定的键值
myDictionary.Remove(1); if(myDictionary.ContainsKey(1)) { Console.WriteLine("Key:{0},Value:{1}","1",myDictionary[1]); } else { Console.WriteLine("不存在Key:1"); }
其它常见属性和方法的说明: