java.util.Calendar hashCode()方法

java.util.Calendar.hashCode() 方法返回此日历对象的哈希码。

1 语法

public int hashCode()

2 参数

3 返回值

该方法返回此日历对象的哈希码值。

4 示例1 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.Calendar hashCode()方法的例子
 */
import java.util.*;

public class CalendarDemo {

   public static void main(String[] args) {

      // create a calendar
      Calendar cal = Calendar.getInstance();

      // display current calendar
      System.out.println("The current calendar shows: " + cal.getTime());

      // get the hash code and print it
      int i = cal.hashCode();
      System.out.println("A hash code for this calendar is: " + i);
   }
}

输出结果为:

The current calendar shows: Wed May 02 14:42:43 EEST 2012
A hash code for this calendar is: 53578188

 

热门文章

优秀文章