C#字典
示例
Dictionary<TKey,TValue>是一个映射。对于给定的键,字典中可以有一个值。
using System.Collections.Generic;
var people = new Dictionary<string, int>
{
{ "John", 30 }, {"Mary", 35}, {"Jack", 40}
};
//读取数据
Console.WriteLine(people["John"]); //30
Console.WriteLine(people["George"]); //抛出KeyNotFoundException
int age;
if (people.TryGetValue("Mary", out age))
{
Console.WriteLine(age); //35
}
//添加和更改数据
people["John"] = 40; //这样覆盖值是可以的
people.Add("John", 40); // Throws ArgumentException since "John" already exists
//遍历内容
foreach(KeyValuePair<string, int> person in people)
{
Console.WriteLine("Name={0}, Age={1}", person.Key, person.Value);
}
foreach(string name in people.Keys)
{
Console.WriteLine("Name={0}", name);
}
foreach(int age in people.Values)
{
Console.WriteLine("Age={0}", age);
}使用集合初始化时重复密钥
var people = new Dictionary<string, int>
{
{ "John", 30 }, {"Mary", 35}, {"Jack", 40}, {"Jack", 40}
}; // throws ArgumentException since "Jack" already exists
热门推荐
10 老同学十一祝福语简短
11 生日油画棒祝福语简短
12 生日祝福语简短激励女生
13 入学校简短祝福语
14 祝产妇的祝福语简短
15 写生日祝福语简短唯美
16 步入高中祝福语简短励志
17 高中升学宴祝福语简短
18 姥爷生日祝福语简短精辟