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


Java Java.util.Calendar.hashCode()用法及代碼示例



描述

這個java.util.Calendar.hashCode()方法返回此日曆對象的哈希碼。

聲明

以下是聲明java.util.Calendar.hashCode()方法

public int hashCode()

參數

NA

返回值

該方法返回此日曆對象的哈希碼值。

異常

NA

示例

下麵的例子展示了 java.util.calendar.hashCode() 方法的用法。

package com.tutorialspoint;

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

相關用法


注:本文由純淨天空篩選整理自 Java.util.Calendar.hashCode() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。