java.lang.Integer.hashCode() 方法返回与 Integer 兼容的 int 值的哈希代码。 hashCode().
语法
public static int hashCode(int value)
参数
值 | 指定要哈希的值。 |
返回值
返回 int 值的哈希代码值。
异常
不适用。
示例:
在下面的示例中,java.lang.Integer.hashCode() 方法返回给定 int 值的哈希码。
import java.lang.*;
public class MyClass {
public static void main(String[] args) {
//创建int值
int val1 = 25;
int val2 = -25;
//打印int值的哈希码
System.out.println("hashCode of the val1 is: " + Integer.hashCode(val1));
System.out.println("hashCode of the val2 is: " + Integer.hashCode(val2));
}
}
上述代码的输出将是:
hashCode of the val1 is: 25
hashCode of the val2 is: -25