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

溫馨提示×

C# byte數組能作為哈希鍵嗎

c#
小樊
82
2024-07-13 12:38:28
欄目: 編程語言

在C#中,byte數組可以作為哈希鍵,只要符合哈希鍵的要求。哈希鍵必須是不可變的,并且需要實現GetHashCode()和Equals()方法。在使用byte數組作為哈希鍵時,可以自定義一個類來包裝byte數組,并實現這些方法。例如:

public class ByteArrayKey
{
    private byte[] key;

    public ByteArrayKey(byte[] key)
    {
        this.key = key;
    }

    public override int GetHashCode()
    {
        unchecked
        {
            int hash = 17;
            foreach (byte b in key)
            {
                hash = hash * 31 + b.GetHashCode();
            }
            return hash;
        }
    }

    public override bool Equals(object obj)
    {
        if (obj is ByteArrayKey other)
        {
            return key.SequenceEqual(other.key);
        }
        return false;
    }
}

然后可以使用這個ByteArrayKey類作為哈希鍵,例如:

var dictionary = new Dictionary<ByteArrayKey, string>();

byte[] key1 = new byte[] { 0x01, 0x02, 0x03 };
byte[] key2 = new byte[] { 0x04, 0x05, 0x06 };

dictionary[new ByteArrayKey(key1)] = "Value1";
dictionary[new ByteArrayKey(key2)] = "Value2";

Console.WriteLine(dictionary[new ByteArrayKey(key1)]); // Output: Value1
Console.WriteLine(dictionary[new ByteArrayKey(key2)]); // Output: Value2

這樣就可以使用byte數組作為哈希鍵了。

0
齐河县| 比如县| 彭州市| 宜宾县| 惠安县| 汶川县| 景谷| 汶上县| 柞水县| 富阳市| 汉寿县| 姚安县| 泾川县| 兴义市| 开化县| 孟村| 修武县| 石家庄市| 灵寿县| 汨罗市| 交城县| 周口市| 措美县| 原平市| 南昌市| 涟源市| 蒲江县| 盈江县| 门头沟区| 凌云县| 通山县| 玉门市| 福贡县| 新津县| 兴山县| 仙桃市| 泰来县| 深泽县| 桂平市| 密山市| 白玉县|