在 C# 中按鍵獲取字典值

Muhammad Maisam Abbas 2024年2月16日
  1. 在 C# 中使用 [] 方法通過鍵獲取字典值
  2. 使用 C# 中的 TryGetKey() 函式通過鍵獲取字典值
在 C# 中按鍵獲取字典值

在本教程中,我們將討論如何通過 C# 中的鍵獲取字典的值。

在 C# 中使用 [] 方法通過鍵獲取字典值

可以使用 Dictionary<T1,T2>在 C# 中宣告字典。字典是一種資料結構,在 C# 中以鍵-值對的形式儲存資料。我們可以通過在 C# 中使用帶有 [] 方法的鍵來獲取字典中的值。

using System;
using System.Collections.Generic;

namespace get_dictionary_value {
  class Program {
    static void Main(string[] args) {
      Dictionary<string, string> mydictionary = new Dictionary<string, string>();

      mydictionary.Add("Key 1", "Value 1");
      mydictionary.Add("Key 2", "Value 2");
      mydictionary.Add("Key 3", "Value 3");

      Console.WriteLine(mydictionary["Key 3"]);
    }
  }
}

輸出:

Value 3

我們使用 Dictionary<string, string> 類建立了一個字典 mydictionary。之後,我們使用 [] 方法在 mydictionary 中檢索 Key 3 鍵的值。這種方法的唯一缺陷是,如果在字典中找不到鍵,則會引發異常。

使用 C# 中的 TryGetKey() 函式通過鍵獲取字典值

TryGetKey() 函式檢查是否鍵是否存在於字典中。TryGetKey() 函式返回一個布林值。如果字典中存在鍵,則該函式返回 true 並將 out 引數的值更改為字典中鍵的值。如果字典中不存在該鍵,則該函式返回 false。如果字典中不存在鍵,則 TryGetKey() 函式會處理 [] 方法中引發的異常。以下程式碼示例向我們展示瞭如何使用 C# 中的 TryGetkey() 函式通過鍵在字典中獲取值。

using System;
using System.Collections.Generic;

namespace get_dictionary_value {
  class Program {
    static void Main(string[] args) {
      Dictionary<string, string> mydictionary = new Dictionary<string, string>();

      mydictionary.Add("Key 1", "Value 1");
      mydictionary.Add("Key 2", "Value 2");
      mydictionary.Add("Key 3", "Value 3");

      string value;
      bool hasValue = mydictionary.TryGetValue("Key 3", out value);
      if (hasValue) {
        Console.WriteLine(value);
      } else {
        Console.WriteLine("Key not present");
      }
    }
  }
}

輸出:

Value 3

我們首先檢查鍵是否存在於 mydictionary 字典中。如果存在,我們將檢索該值並進行列印。如果沒有,我們將列印 Key not present

Muhammad Maisam Abbas avatar Muhammad Maisam Abbas avatar

Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.

LinkedIn

相關文章 - Csharp Dictionary