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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。