Java.lang.Double 类

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

语法

public int hashCode()

参数

不需要参数。

返回值

返回哈希值此 Double 对象的代码值。

异常

无。

示例:

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

import java.lang.*;

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

    //打印Double对象的哈希码
    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: 1076133888
hashCode of the val2 is: -1071349760