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


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