中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

c# trygetvalue 會出錯嗎

c#
小樊
81
2024-11-23 09:10:16
欄目: 編程語言

在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方法在鍵存在時正常工作,而在鍵不存在時不會引發錯誤。

0
友谊县| 广汉市| 襄汾县| 石河子市| 达拉特旗| 海阳市| 灌云县| 庆元县| 高淳县| 东光县| 隆德县| 华蓥市| 巴中市| 额济纳旗| 育儿| 天峻县| 讷河市| 岳池县| 阿坝| 宣城市| 格尔木市| 长海县| 衡东县| 恭城| 洛阳市| 广西| 滨州市| 正阳县| 奉节县| 西乡县| 白银市| 湘潭市| 枝江市| 农安县| 苗栗市| 清水县| 荆门市| 霍州市| 施甸县| 苍山县| 吕梁市|