在 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中文網其他相關文章!