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

溫馨提示×

在C#中如何自定義字典的鍵類型

c#
小樊
87
2024-09-11 10:24:24
欄目: 編程語言

在C#中,要自定義字典的鍵類型,您需要創建一個自定義類并實現IEquatable<T>接口

using System;
using System.Collections.Generic;

public class CustomKey : IEquatable<CustomKey>
{
    public string KeyPart1 { get; set; }
    public int KeyPart2 { get; set; }

    public bool Equals(CustomKey other)
    {
        if (other == null) return false;
        return this.KeyPart1 == other.KeyPart1 && this.KeyPart2 == other.KeyPart2;
    }

    public override bool Equals(object obj)
    {
        return Equals(obj as CustomKey);
    }

    public override int GetHashCode()
    {
        unchecked
        {
            int hash = 17;
            hash = hash * 23 + (KeyPart1 != null ? KeyPart1.GetHashCode() : 0);
            hash = hash * 23 + KeyPart2.GetHashCode();
            return hash;
        }
    }
}

class Program
{
    static void Main(string[] args)
    {
        var customDict = new Dictionary<CustomKey, string>();

        var key1 = new CustomKey { KeyPart1 = "A", KeyPart2 = 1 };
        var key2 = new CustomKey { KeyPart1 = "B", KeyPart2 = 2 };

        customDict[key1] = "Value1";
        customDict[key2] = "Value2";

        Console.WriteLine(customDict[key1]); // Output: Value1
        Console.WriteLine(customDict[key2]); // Output: Value2
    }
}

在這個示例中,我們創建了一個名為CustomKey的自定義類,它包含兩個屬性:KeyPart1(字符串類型)和KeyPart2(整數類型)。我們實現了IEquatable<CustomKey>接口的Equals方法來比較兩個CustomKey對象是否相等,同時重寫了GetHashCode方法以確保字典可以正確地存儲和檢索鍵值對。

然后,在Main方法中,我們創建了一個Dictionary<CustomKey, string>實例,并向其添加了兩個鍵值對。最后,我們通過鍵從字典中檢索值并將其輸出到控制臺。

0
仙游县| 高密市| 鄂州市| 徐闻县| 莒南县| 太原市| 资源县| 原平市| 柯坪县| 鄂尔多斯市| 河西区| 清丰县| 靖边县| 额尔古纳市| 祁连县| 木兰县| 于都县| 佛冈县| 六枝特区| 寻甸| 武威市| 仁寿县| 汶川县| 河北区| 赫章县| 徐州市| 商城县| 蓬溪县| 都江堰市| 新乡县| 增城市| 绵阳市| 隆昌县| 广饶县| 泌阳县| 封丘县| 西宁市| 运城市| 商水县| 平果县| 苗栗市|