Enum類hashCode()方法
- hashCode() 方法可在
java.lang
包。 - hashCode() 方法用於檢索此枚舉常量的哈希碼。
- hashCode() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
- hashCode() 方法是最終方法,它不會在子類中覆蓋。
- hashCode() 方法在返回枚舉常量的哈希碼時不會拋出異常。
用法:
public final int hashCode();
參數:
- 它不接受任何參數。
返回值:
這個方法的返回類型是int
,它返回此枚舉常量的哈希碼,哈希碼是整數類型。
例:
// Java program to demonstrate the example
// of int hashCode() of Enum method
enum Month{
JAN,FEB,MAR,APR,MAY;
}
public class HashCode {
public static void main(String args[]){
// By using hashcode() method is to get the enum
// hashcode of the given enum constants
int h1 = Month.JAN.hashCode();
int h2 = Month.FEB.hashCode();
int h3 = Month.MAR.hashCode();
int h4 = Month.APR.hashCode();
int h5 = Month.MAY.hashCode();
System.out.println("Display Hashcode:");
System.out.println("Month.JAN.hashCode() "+ " "+ h1);
System.out.println("Month.FEB.hashCode()"+ " "+ h2);
System.out.println("Month.MAR.hashCode()"+ " "+ h3);
System.out.println("Month.APR.hashCode()"+ " "+ h4);
System.out.println("Month.MAY.hashCode()"+ " "+ h5);
}
}
輸出
Display Hashcode: Month.JAN.hashCode() 1785210046 Month.FEB.hashCode() 1552787810 Month.MAR.hashCode() 1361960727 Month.APR.hashCode() 739498517 Month.MAY.hashCode() 125130493
相關用法
- Java Enum equals()用法及代碼示例
- Java Enum toString()用法及代碼示例
- Java Enum ordinal()用法及代碼示例
- Java Enum valueOf()用法及代碼示例
- Java Enum finalize()用法及代碼示例
- Java Enum clone()用法及代碼示例
- Java Enum name()用法及代碼示例
- Java Enum getDeclaringClass()用法及代碼示例
- Java Enum compareTo()用法及代碼示例
- Java EnumSet range()用法及代碼示例
- Java EnumMap remove()用法及代碼示例
- Java EnumMap hashCode()用法及代碼示例
- Java EnumMap get()用法及代碼示例
- Java EnumSet complementOf()用法及代碼示例
- Java EnumSet clone()用法及代碼示例
- Java EnumMap entrySet()用法及代碼示例
- Java EnumMap containsKey()用法及代碼示例
- Java EnumMap containsValue(value)用法及代碼示例
- Java Enumeration asIterator()用法及代碼示例
- Java EnumMap containsValue()用法及代碼示例
注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java Enum hashCode() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。