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


Java Float hashCode()用法及代碼示例


Float類中的hashCode()方法方法是Java中的內置方法,該方法返回此Float對象的哈希碼值。

用法:

public int hashCode()

參數:它不帶任何參數。


返回值:該函數返回此對象的哈希碼值。

下麵是hashCode()方法的實現:

示例1:

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

示例2:

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


相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Float hashCode() method in Java with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。