gpt4 book ai didi

c# - 字典直接访问与 TryGetValue

转载 作者:太空宇宙 更新时间:2023-11-03 18:10:24 25 4
gpt4 key购买 nike

我有一个字典,它将字符串映射到这样的对象:Dictionary<string, object> myDic;
我事先知道对象的类型是基于字符串的,但我的问题是我应该使用 TryGetValue,还是使用 try、catch 语句直接查找。

例子:

//TryGetValueMethod
object myObject = null;
myDic.TryGetValue("test", out myObject);

MyCustomType t1 = (MyCustomType) myObject;

//Direct lookup method
try
{
MyCustomType t2 = (MyCustomType) myDic["test"];
//Do something here...
} catch {}

你认为哪种方法更受欢迎?第二个是更干净的编码,因为没有额外的铸件,但我认为它比第一个效率低,因为它没有异常。

最佳答案

MSDN 说“使用这种方法 [TryGetValue] 比捕获由 Item 属性抛出的 KeyNotFoundException 更有效。”

它还解释了 TryGetValue “结合了 ContainsKey 方法和 Item 属性的功能”..

您还应该只捕获该特定异常而不是所有异常。

更新:从 C# 7 开始,您现在可以编写:

if (myDic.TryGetValue("test", out MyCustomType value)) {
// do something with value
}

关于c# - 字典直接访问与 TryGetValue,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16906675/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com