當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。