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)
相關用法
- Java DecimalFormat hashCode()用法及代碼示例
- Java LinkedHashSet hashCode()用法及代碼示例
- Java CopyOnWriteArrayList hashCode()用法及代碼示例
- Java ParsePosition hashCode()用法及代碼示例
- Java HashSet hashCode()用法及代碼示例
- Java LinkedBlockingDeque hashCode()用法及代碼示例
- Java TreeSet hashCode()用法及代碼示例
- Java Stack hashCode()用法及代碼示例
- Java GregorianCalendar hashCode()用法及代碼示例
- Java Vector hashCode()用法及代碼示例
- Java YearMonth hashCode()用法及代碼示例
- Java Collator hashCode()用法及代碼示例
- Java Map hashCode()用法及代碼示例
- Java AbstractSequentialList hashCode()用法及代碼示例
- Java RuleBasedCollator hashCode()用法及代碼示例
注:本文由純淨天空篩選整理自ankita_chowrasia大神的英文原創作品 Integer hashCode() Method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。