创建直接使用不会报错的字典
问题
在使用c#字典时,如果字典定义是Dictionary<string, string> dic=new Dictionary<string, string>(),直接使用dic[“123”]=”value”;不会有任何问题;但是如果字典定义是Dictionary<string, Student> dic=new Dictionary<string, Student>();dic[“123”].Name=”value”;如果dic[“123”]添加Student对象到字典”123”就会报错,我希望在使用时不需要每次判断dic[“123”]是否已经添加,在没有添加时默认添加一个对象。 以上描述有我使用的特定场景,就是我不关心Student的引用,只关心其中的值。所有我可以直接创建一个默认对象。
解决
解决办法是:自定义一个字典类型。更完善的方法可以传入创建默认对象的委托。这样可以更灵活的创建默认对象。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
void Main()
{
var dic2 = new AutoCreateDictionary<string, Student>();
dic2["key"].Name = "value";
dic2["key"].Dump();
}
class Student
{
public string Name { get; set; }
}
class AutoCreateDictionary<TKey, TValue> : Dictionary<TKey, TValue> where TValue : new()
{
public new TValue this[TKey key]
{
get
{
if (!TryGetValue(key, out TValue value))
{
value = new TValue();
Add(key, value);
}
return value;
}
set
{
base[key] = value;
}
}
public new void Add(TKey key, TValue value)
{
if (value == null)
{
value = new TValue();
}
base.Add(key, value);
}
}
参考资料
本文会经常更新,请阅读原文: https://dashenxian.github.io/post/%E5%88%9B%E5%BB%BA%E7%9B%B4%E6%8E%A5%E4%BD%BF%E7%94%A8%E4%B8%8D%E4%BC%9A%E6%8A%A5%E9%94%99%E7%9A%84%E5%AD%97%E5%85%B8 ,以避免陈旧错误知识的误导,同时有更好的阅读体验。
本作品采用 知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议 进行许可。欢迎转载、使用、重新发布,但务必保留文章署名 小神仙 (包含链接: https://dashenxian.github.io ),不得用于商业目的,基于本文修改后的作品务必以相同的许可发布。如有任何疑问,请 与我联系 (125880321@qq.com) 。