gpt4 book ai didi

c# - 如何在 HashCode 中包含 "joker"值

转载 作者:行者123 更新时间:2023-11-30 15:15:29 25 4
gpt4 key购买 nike

<分区>

我有以下示例类:

public sealed class MyDictKey
{
public int Type { get; }
public int SubType { get; }

public MyDictKey(int type, int subType) // both can only be positive values
{
Type = type;
SubType = subType;
}

public override bool Equals(object obj)
{
if (obj is MyDictKey other)
{
bool typeEqual = other.Type == Type;
bool subTypeEqual = other.SubType == -1 || SubType == -1 || other.SubType == SubType;
return typeEqual && subTypeEqual;
}

return false;
}

public override int GetHashCode()
{
unchecked
{
int hash = 17;
hash = hash * 23 + Type.GetHashCode();
return hash;
}
}
}

以及以下测试(NUnit,如果有人感兴趣的话):

    [Test]
public void CalculatorTest()
{
Dictionary<MyDictKey, string> myTypeProcessors = new Dictionary<MyDictKey, string>();

myTypeProcessors.Add(new MyDictKey(10, 20), "10.20_processor");
myTypeProcessors.Add(new MyDictKey(3, 4), "3.4_processor");
myTypeProcessors.Add(new MyDictKey(4, -1), "4.any_processor");
// -1 means it can process "any" subtype

for (int i = 0; i < 1000; i++) // should work for any positive number
{
bool canGet = myTypeProcessors.TryGetValue(new MyDictKey(4, i), out string value);
Assert.IsTrue(canGet);
Assert.That(value, Is.EqualTo("4.any_processor"));

bool canGet2 = myTypeProcessors.TryGetValue(new MyDictKey(10, i), out string value2);
if (i == 20)
{
Assert.IsTrue(canGet2);
Assert.That(value2, Is.EqualTo("10.20_processor"));
}
else
{
Assert.IsFalse(canGet2);
}
}
}

我能否仅通过使用 GetHashCode 以某种方式达到相同的机制?因为这样,如果只有 SubType 不同,字典的 TryGetValue 将始终调用 Equals 方法。重要的是新方法不能比原来的方法慢。

我想到的是位运算符;或者有什么神奇的数学公式吗?

提前谢谢你。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com