GetHashCode() 仅来自布尔值

发布于 2024-11-26 13:28:36 字数 339 浏览 2 评论 0原文

我有一个不可变的类,其唯一字段是 bool[](大小在运行时确定)。

我怎样才能计算出这个类的良好哈希码?一般来说,我只会在每个字段上调用 ​​GetHashCode() ,并将它们与以下运算符之一组合:+ | &,但由于唯一可能的哈希码是 0(对于 false)和 1(对于 true) ,那真的不会让我有任何进展。我的实现只需要使用 bools,并且必须适用于任意大小的数组。

(可能并不重要,但我正在使用 C#/.NET 进行编码。)

I have an immutable class whose only field is a bool[] (size determined at runtime).

How can I compute a good hash code of this class? Generally I would just call GetHashCode() on each field, and combine them with one of these operators: + | &, but since the only possible hash codes are 0 for false and 1 for true, that's not really going to get me anywhere. My implementation needs to work with only bools, and must work for an arbitrary-sized array.

(Probably doesn't matter much, but I'm coding in C#/.NET.)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

╰◇生如夏花灿烂 2024-12-03 13:28:36

假设您的 bool[] 名为 bools

unchecked { 
    int hash = 17;
    for(int index = 0; index < bools.Length; index++) {
        hash = hash * 23 + bools[index].GetHashCode();
    }
    return hash;
}

Assuming your bool[] is named bools:

unchecked { 
    int hash = 17;
    for(int index = 0; index < bools.Length; index++) {
        hash = hash * 23 + bools[index].GetHashCode();
    }
    return hash;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文