在C#中,TryGetValue
是一個字典(Dictionary)類的方法,用于嘗試獲取指定鍵的值。如果鍵存在,則返回該值;否則返回默認值。以下是如何使用TryGetValue
的示例:
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}
};
// 嘗試獲取鍵為 "apple" 的值
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.");
}
// 嘗試獲取不存在的鍵 "grape" 的值
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.");
}
}
}
在這個示例中,我們首先創建了一個包含三個鍵值對的字典。然后,我們使用TryGetValue
方法嘗試獲取鍵為 “apple” 的值。如果鍵存在,我們將輸出該值;否則,我們將輸出一個消息表示鍵不存在。接下來,我們嘗試獲取不存在的鍵 “grape” 的值,并輸出相應的消息。