Java.lang.Double 类

java.lang.Double.hashCode() 方法返回与 Double 兼容的 double 值的哈希代码。 hashCode().

语法

public static int hashCode(double value)

参数

指定要哈希的值。

返回值

返回双精度值的哈希代码值。

异常

不适用。

示例:

在下面的示例中,java.lang.Double.hashCode() 方法返回给定双精度值的哈希码。

import java.lang.*;

public class MyClass {
  public static void main(String[] args) {
    
    //创建双精度值
    double val1 = 10.25;
    double val2 = -10.25;

    //打印双精度值的哈希码
    System.out.println("hashCode of the val1 is: " + Double.hashCode(val1)); 
    System.out.println("hashCode of the val2 is: " + Double.hashCode(val2));   
  }
}

上述代码的输出将是:

hashCode of the val1 is: 1076133888
hashCode of the val2 is: -1071349760