string.GetHashCode() 足以用于 nlp 中的单词词典吗?
我可以使用 string.GetHashCode() 函数来可靠地存储词干数据吗?
can I use the string.GetHashCode()
function for storing stemming data reliably?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 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.
来自 MSDN Object.GetHashCode 方法
From MSDN at Object.GetHashCode Method