在C#中,TryGetValue
方法本身不會出錯。這個方法屬于Dictionary
類,用于嘗試獲取字典中給定鍵的值。如果鍵存在于字典中,TryGetValue
方法將返回true
,并將值存儲在指定的變量中。如果鍵不存在于字典中,TryGetValue
方法將返回false
,并且不會為值分配任何內存。
下面是一個簡單的示例:
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
Dictionary<string, int> myDictionary = new Dictionary<string, int>
{
{"apple", 1},
{"banana", 2},
{"orange", 3}
};
int value;
if (myDictionary.TryGetValue("apple", out value))
{
Console.WriteLine($"The value of 'apple' is: {value}");
}
else
{
Console.WriteLine("The key 'apple' does not exist in the dictionary.");
}
if (myDictionary.TryGetValue("grape", out value))
{
Console.WriteLine($"The value of 'grape' is: {value}");
}
else
{
Console.WriteLine("The key 'grape' does not exist in the dictionary.");
}
}
}
輸出:
The value of 'apple' is: 1
The key 'grape' does not exist in the dictionary.
在這個示例中,TryGetValue
方法在鍵存在時正常工作,而在鍵不存在時不會引發錯誤。