string.GetHashCode() 足以用于 nlp 中的单词词典吗?

发布于 2024-11-04 08:09:53 字数 48 浏览 5 评论 0原文

我可以使用 string.GetHashCode() 函数来可靠地存储词干数据吗?

can I use the string.GetHashCode() function for storing stemming data reliably?

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

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

发布评论

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

评论(2

鲸落 2024-11-11 08:09:53

您可以使用 string.GetHashCode 来平衡哈希表。这就是它的设计用途,也是它应该的用途。

特别是,文档特别指出,在任何情况下都不应该将哈希码保存到永久存储中;字符串哈希码算法允许随时更改,事实上过去已经这样做了。

You can use string.GetHashCode to balance a hash table. That's all it is designed to be used for, and that's all it should be used for.

In particular, the documentation specifically states that you should under no circumstances persist hashcodes to permanent storage; the string hash code algorithm is permitted to change at any time, and in fact has done so in the past.

山川志 2024-11-11 08:09:53

来自 MSDN Object.GetHashCode 方法

默认实现
GetHashCode方法不保证
不同的情况有独特的返回值
对象。此外,.NET
框架不保证
默认实现
GetHashCode 方法及其值
之间的回报将相同
.NET 的不同版本
框架。因此,默认的
该方法的实施不得
用作唯一的对象标识符
用于散列目的。

From MSDN at Object.GetHashCode Method

The default implementation of the
GetHashCode method does not guarantee
unique return values for different
objects. Furthermore, the .NET
Framework does not guarantee the
default implementation of the
GetHashCode method, and the value it
returns will be the same between
different versions of the .NET
Framework. Consequently, the default
implementation of this method must not
be used as a unique object identifier
for hashing purposes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文