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
適用于在訪問字典中的數據之前檢查鍵是否存在,以及在處理可能不存在的數據時避免引發異常。