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


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


Java中Integer類的java.lang.Integer.hashCode()方法用於返回特定Integer的哈希碼。

用法:

public int hashCode()

參數:該方法不帶任何參數。


返回值:該方法返回此對象的哈希碼整數值,該值等於此Integer對象表示的簡單的原始整數值。

以下程序說明了Integer類的hashCode()的用法:
示例1:傳遞整數數據類型時。

// Java program to demonstrate working 
// of Java.lang.Integer.hashCode() Method 
import java.lang.*; 
  
public class Geeks { 
  
    public static void main(String[] args) 
    { 
        // Object s_int created 
        Integer s_int = new Integer("223"); 
  
        // Returning a hash code value for this object  
        int hashcodevalue = s_int.hashCode(); 
        System.out.println("Hash code Value for object = " + hashcodevalue); 
    } 
}
輸出:
Hash code Value for object = 223

示例2:傳遞String數據類型時。
注意:這會導致RuntimeErrors,例如NumberFormatException

// Java program to demonstrate working 
// of Java.lang.Integer.hashCode() Method 
import java.lang.*; 
  
public class Geeks { 
  
    public static void main(String[] args) 
    { 
        // object s_int created 
        Integer s_int = new Integer("gfg"); 
  
        // Returning a hash code value for this object. 
        int hashcodevalue = s_int.hashCode(); 
        System.out.println("Hash code Value for object = " + hashcodevalue); 
    } 
}

輸出:

Exception in thread "main" java.lang.NumberFormatException: For input string: "gfg"
    at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
    at java.lang.Integer.parseInt(Integer.java:580)
    at java.lang.Integer.(Integer.java:867)
    at Geeks.main(Geeks.java:9)


相關用法


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