gpt4 book ai didi

c# - GetHashCode 返回不同的值

转载 作者:行者123 更新时间:2023-11-30 20:04:00 26 4
gpt4 key购买 nike

我正在使用 Linq-to-Sql 查询 SQL Server 数据库。此查询返回我的数据库中实体的列表。我的基础数据没有改变。

收到列表后,我会对其调用 GetHashCode 以测试是否相等。奇怪的是,哈希值总是不同的。为什么总是不同?

谢谢,

最佳答案

不同是因为它们是不同的对象引用。

您需要覆盖 Equals()GetHashCode()对于您的对象,基于对象数据,如果您想以那种方式行事。

Here你有一个关于如何做的例子,here一篇关于覆盖 GetHashCode() 方法的指南的博文。希望对您有所帮助。

class TwoDPoint : System.Object
{
public readonly int x, y;

public TwoDPoint(int x, int y)
{
this.x = x;
this.y = y;
}

public override bool Equals(System.Object obj)
{
if (obj == null) return false;

TwoDPoint p = obj as TwoDPoint;
if (p == null) return false;

// Return true if the fields match
return (x == p.x) && (y == p.y);
}

public override int GetHashCode()
{
return x ^ y;
}
}

作为Servy在他的评论中说,请记住,即使覆盖 GetHashCode() 方法,您也无法(永远)使用该类型的数据进行无冲突哈希,您只能减少碰撞率。您需要使用 Equals() 来确保具有相同哈希值的对象确实相同

关于c# - GetHashCode 返回不同的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13844425/

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