Java.lang.Integer 类

java.lang.Integer.hashCode() 方法返回此 Integer 的哈希代码。

语法

public int hashCode()

参数

不需要参数。

返回值

返回哈希码此对象的值,等于此 Integer 对象表示的原始 int 值。

异常

无。

示例:

在下面的示例中,java.lang.Integer.hashCode() 方法返回给定 Integer 的哈希代码。

import java.lang.*;

public class MyClass {
  public static void main(String[] args) {
    
    //创建Integer对象
    Integer val1 = 25;
    Integer val2 = -25;

    //打印Integer对象的哈希码
    System.out.println("hashCode of the val1 is: " + val1.hashCode()); 
    System.out.println("hashCode of the val2 is: " + val2.hashCode());   
  }
}

上述的输出代码为:

hashCode of the val1 is: 25
hashCode of the val2 is: -25