c#dictionary通过key获取value
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c#dictionary通过key获取value相关的知识,希望对你有一定的参考价值。
语法结构应该是怎样的呢
c#dictionary通过key获取value的语法结构是:
private Dictionary<int,String> objectInfoDict_Drug=new ;
Dictionary<int,ObjectInfo_Drug>();
objectInfoDict_Drug.Add(1,"向字典添加一条数据");//第一个参数1就为这条记录的key;
string info;//定义一个字符串,用来存储通过字典获取到的值;
objectInfoDict_Drug.TryGetValue(1,out info);//这时候就通过key,也就是数字1,找到了相应的数据存到了info里面。
Dictionary 对象用于在结对的名称/值中存储信息((等同于键和项目)。Dictionary 对象看似比数组更为简单,然而,Dictionary 对象却是更令人满意的处理关联数据的解决方案。
比较 Dictionary 和数组: 键用于识别 Dictionary 对象中的项目 无需调用 ReDim 来改变 Dictionary 对象的尺寸 当从 Dictionary 删除一个项目时,其余的项目会自动上移 Dictionary 不是多维,而数组是 Dictionary 与数组相比,有更多的内建对象 Dictionary 在频繁地访问随机元素时,比数组工作得更好 Dictionary 在根据它们的内容定位项目时,比数组工作得更好 下面的例子创建了一个 Dictionary 对象,并向对象添加了一些键/项目对,然后取回了键bl的值。
参考技术A private Dictionary<int,String> objectInfoDict_Drug=new Dictionary<int,ObjectInfo_Drug>();objectInfoDict_Drug.Add(1,"向字典添加一条数据");//第一个参数1就为这条记录的key
string info;//定义一个字符串,用来存储通过字典获取到的值
objectInfoDict_Drug.TryGetValue(1,out info);//这时候就通过key,也就是数字1,找到了相应的数据存到了info里面 参考技术B Dictionary<string,string> dic = Dictionary<string,string>()
"a","1","b","2"
;
取值:
dic["a"]就是1
dic["b"]就是2
Python 基础 - Day 2 Learning Note - Dictionary 字典
Dictionary的表达式:{KEY: VALUE}
- value 可以是string, list, or disctionary. 层层嵌套,e.g 多层菜单
- Dictionary的打印结果是无序的。因为可以通过key来查找value内容,所有不用像list一样,通过下标来查找。
- key必须是唯一的,天生去重复。
Dataset = { ‘Equity Fund‘: ‘Deep value‘, ‘Balanced Fund‘: ‘Market oriented with a growth bias‘, ‘Fixed Income Fund‘: [‘Government bond‘,‘Financial Notes‘,‘Credit Bond‘,‘MBS‘], }
print(Dataset)
{‘Equity Fund‘: ‘Deep value‘, ‘Balanced Fund‘: ‘Market oriented with a growth bias‘, ‘Fixed Income Fund‘: [‘Government bond‘, ‘Financial Notes‘, ‘Credit Bond‘, ‘MBS‘]}
添加
Dataset["Alternative Investment"] = ‘REITS‘ # 添加Key
print(Dataset)
{‘Equity Fund‘: ‘Deep value‘, ‘Balanced Fund‘: ‘Market oriented with a growth bias‘, ‘Fixed Income Fund‘: [‘Government bond‘, ‘Financial Notes‘, ‘Credit Bond‘, ‘MBS‘], ‘Alternative Investment‘: ‘REITS‘}
修改
Dataset["Equity Fund"] = ‘Fundamental Growth‘
Dataset[‘Fixed Income Fund‘][1] = ‘MTN‘
print(Dataset)
{‘Equity Fund‘: ‘Fundamental Growth‘, ‘Balanced Fund‘: ‘Market oriented with a growth bias‘, ‘Fixed Income Fund‘: [‘Government bond‘, ‘MTN‘, ‘Credit Bond‘, ‘MBS‘], ‘Alternative Investment‘: ‘REITS‘}
删除
del Dataset[‘Equity Fund‘] print(Dataset)
or
Dataset.pop("Equity Fund") print(Dataset)
or 随机删除
Dataset.popitem()
查找
以上是关于c#dictionary通过key获取value的主要内容,如果未能解决你的问题,请参考以下文章