在 JavaScript 领域,需要将字符串转换为一种称为哈希的紧凑表示形式。与服务器端语言不同,JavaScript 对此任务提出了独特的挑战。
幸运的是,JavaScript 通过使用 hashCode() 方法提供了解决方案。当应用于字符串时,此方法会生成一个唯一的哈希值,该值用作该字符串的指纹。 string.
实现:
String.prototype.hashCode = function() { var hash = 0, i, chr; if (this.length === 0) return hash; for (i = 0; i < this.length; i++) { chr = this.charCodeAt(i); hash = ((hash << 5) - hash) + chr; hash |= 0; // Convert to 32bit integer } return hash; };
用法:
const str = 'revenue'; console.log(str, str.hashCode());
输出:
revenue 557163167
以上是如何在 JavaScript 中有效地散列字符串?的详细内容。更多信息请关注PHP中文网其他相关文章!