TryGetValue
是C#中的一个方法,它属于Dictionary<TKey, TValue>
类。这个方法用于尝试从字典中获取指定键的值。如果键存在于字典中,则返回与该键关联的值;否则,返回默认值(对于引用类型,默认为null
;对于值类型,默认为该类型的默认值,例如0或false)。
以下是TryGetValue
的适用场景:
TryGetValue
来检查键是否存在。Dictionary<string, int> myDictionary = new Dictionary<string, int>();
myDictionary.Add("apple", 1);
myDictionary.Add("banana", 2);
int value;
if (myDictionary.TryGetValue("apple", out value))
{
Console.WriteLine($"The value for 'apple' is {value}.");
}
else
{
Console.WriteLine("The key 'apple' does not exist in the dictionary.");
}
TryGetValue
来避免引发异常。例如,当您需要遍历字典中的所有键值对并执行某些操作时,可以使用TryGetValue
来安全地访问值。Dictionary<string, string> myDictionary = new Dictionary<string, string>();
myDictionary.Add("apple", "fruit");
myDictionary.Add("banana", "fruit");
foreach (KeyValuePair<string, string> entry in myDictionary)
{
string value;
if (entry.Value.TryGetValue(out value))
{
Console.WriteLine($"The value for '{entry.Key}' is '{value}'.");
}
else
{
Console.WriteLine($"The value for '{entry.Key}' is not available.");
}
}
总之,TryGetValue
适用于在访问字典中的数据之前检查键是否存在,以及在处理可能不存在的数据时避免引发异常。