当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Double hashCode()用法及代码示例


Double类的hashCode()方法是内置方法,用于返回此Double对象的哈希码值。

用法:

DoubleObject.hashCode()

参数:它不带任何参数。


返回类型:它返回一个int值。返回的值是(int)(v ^(v >>> 32)),其中v是一个等于Double.doubleToLongBits(this.doubleValue())的长型变量。

下面是hashCode()方法的实现:

示例1:

// Java code to demonstrate 
// Double hashCode() Method 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        double d = 118.698; 
  
        // creating Double object. 
        Double value = new Double(d); 
  
        // hashCode() method Double class 
        int output = value.hashCode(); 
  
        // printing the output 
        System.out.println("Hashcode Value of "
                           + value + " : "
                           + output); 
    } 
}
输出:
Hashcode Value of 118.698 : 1215072837

示例2:

// Java code to demonstrate 
// Double hashCode() Method 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        int i = -30; 
  
        // creating Double object. 
        Double value = new Double(i); 
  
        // hashCode() method Double class 
        int output = value.hashCode(); 
  
        // printing the output 
        System.out.println("Hashcode Value of "
                           + value + " : "
                           + output); 
    } 
}
输出:
Hashcode Value of -30.0 : -1069678592


相关用法


注:本文由纯净天空筛选整理自ShivamKD大神的英文原创作品 Double hashCode() method in Java with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。