Java Calendar hashCode()方法与示例

日历类hashCode()方法

  • hashCode()方法在java.util包中可用。

  • hashCode()方法用于检索此Calendar的哈希码值。

  • hashCode()方法是一种非静态方法,可通过类对象访问,如果尝试使用类名访问该方法,则会收到错误消息。

  • hashCode()方法在返回此Calendar的哈希码时不会引发异常。

语法:

    public int hashCode();

参数:

  • 它不接受任何参数。

返回值:

该方法的返回类型为int,它返回此Calendar哈希码值。

示例

//Java程序演示的例子
//Calendar的int hashCode()方法

import java.util.*;

public class HashCode {
    public static void main(String args[]) {
        //实例化Calendar对象
        Calendar ca = Calendar.getInstance();

        System.out.println("ca.getTime(): " + ca.getTime());

        //通过使用hashCode()方法是
        //返回此日历的哈希码
        int hc = ca.hashCode();

        //显示此日历的哈希码
        System.out.println("ca.hashCode(): " + hc);
    }
}

输出结果

ca.getTime(): Mon Jan 27 08:24:31 GMT 2020
ca.hashCode(): -434964174