扫码一下
查看教程更方便
方法返回此字符串的哈希码。 String 对象的哈希码计算为
s[0]*31^(n - 1) + s[1]*31^(n - 2) + ... + s[n - 1]
使用 int 算术,其中 s[i] 是字符串的第 i 个字符,n 是字符串的长度,^ 表示取幂。 (空字符串的哈希值为零。)
public int hashCode()
这是默认方法,不接受任何参数。
此方法返回此对象的哈希码值。
public class Main { public static void main(String args[]) { String Str = new String("Welcome to jiyik.com"); System.out.println("Hashcode for Str :" + Str.hashCode() ); } }
上面示例编译运行结果如下
Hashcode for Str :1199735560