Java String hashCode()方法具有什么功能呢?
Java String hashCode()方法的功能说明
Java String hashCode()
方法的功能:
用于返回指定字符串的哈希码。 String
对象的哈希码计算如下 -
注意事项:空字符串的哈希值为零
hashCode()方法的语法
public int hashCode()
参数
此方法无参数返回值
- 返回字符串的哈希码值
例
import java.io.*;
public class testClass {
public static void main(String args[]) {
String Str = new String("Welcome to java265.com");
System.out.println("Hashcode:" + Str.hashCode());
}
}
/*
以上代码运行后,将输出以下信息
Hashcode:378100379
*/
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。