91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
汶上县| 阿尔山市| 右玉县| 确山县| 大冶市| 会东县| 太和县| 深水埗区| 陆川县| 宁城县| 青川县| 金坛市| 景洪市| 和田市| 洪洞县| 林西县| 彰武县| 营口市| 达拉特旗| 宁波市| 桑植县| 安乡县| 永顺县| 海丰县| 上林县| 肥东县| 阿城市| 秦皇岛市| 山阳县| 湄潭县| 建瓯市| 南开区| 西安市| 枞阳县| 哈密市| 河南省| 敦煌市| 祁门县| 汕头市| 阿图什市| 广东省|