我有一个字典,它将字符串映射到这样的对象:
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 {}
你认为哪种方法更受欢迎?第二个是更干净的编码,因为没有额外的铸件,但我认为它比第一个效率低,因为它没有异常。