java.util.Date.hashCode()方法實例
java.util.Date.hashCode() 方法返回此Date對象的哈希代碼。
聲明
以下是java.util.Date.hashCode()方法的聲明
public int hashCode()
參數
-
NA
返回值
該方法返回此Date對象的哈希碼值。
異常
-
NA
例子
下麵的示例演示java.util.Date.hashCode()方法的用法。
package com.yiibai; import java.util.*; public class DateDemo { public static void main(String[] args) { // create a date Date date = new Date(99, 5, 10); // display current date System.out.println("The current date shows: " + date.toString()); // get the hash code and print it int i = date.hashCode(); System.out.println("A hash code for this date is: " + i); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
The current date shows: Thu Jun 10 00:00:00 EEST 1999 A hash code for this calendar is: 1249064024