TryGetValue
是C#中的一個方法,通常用于字典(Dictionary)和集合(HashSet)等類型,以嘗試獲取某個鍵或元素的值。它不能直接用于所有類型,因為它是一個泛型方法,需要指定鍵的類型。
例如,在字典中,你可以這樣使用 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 of 'apple' is {value}.");
}
else
{
Console.WriteLine("The key 'apple' was not found in the dictionary.");
}
然而,對于其他類型,如自定義類,你不能直接使用 TryGetValue
,因為它需要一個鍵參數。在這種情況下,你需要在自定義類中實現類似的方法。例如:
public class MyClass
{
public string Key { get; set; }
public int Value { get; set; }
}
MyClass myObject = new MyClass { Key = "apple", Value = 1 };
int value;
if (myObject.TryGetValue("Key", out value))
{
Console.WriteLine($"The value of 'Key' is {value}.");
}
else
{
Console.WriteLine("The key 'Key' was not found in the object.");
}
在這個例子中,我們在 MyClass
中實現了一個名為 TryGetValue
的方法,它接受一個字符串參數(與類的屬性名相匹配),并嘗試獲取與該鍵關聯的值。