Java.util.GregorianCalendar.hashCode() 方法


Java.util.GregorianCalendar.hashCode() 方法

package com.codingdict;

import java.util.*;

public class GregorianCalendarDemo {
   public static void main(String[] args) {

      // create a new calendar
      GregorianCalendar cal = (GregorianCalendar) GregorianCalendar.getInstance();

      // print the current date and time
      System.out.println("" + cal.getTime());

      // print a hashcode for this calendar
      System.out.println("Hash Code:" + cal.hashCode());
   }
}