Java.lang.Long 类

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

语法

public int hashCode()

参数

不需要参数。

返回值

返回哈希码此 Long 对象的值。

异常

无。

示例:

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

import java.lang.*;

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

    //打印Long对象的哈希码
    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: 1025
hashCode of the val2 is: 1024