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


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


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


相關用法


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