Java String hashCode() 方法
实例
返回字符串的哈希代码:
public class Main {
public static void main(String[] args) {
String myStr = "Hello";
System.out.println(myStr.hashCode());
}
}
定义与用法
hashCode()
方法返回字符串的哈希代码。
字符串对象的哈希代码计算如下:
其中 s[i] 是字符串的第 i 个字符,n 是字符串的长度,^ 表示求幂。
语法
参数值
无
技术细节
返回: | 一个 int 值,表示字符串的哈希代码 |
---|