java.lang.Object.hashCode()方法實例
java.lang.Object.hashCode() 方法返回該對象的哈希碼值。此方法支持對哈希表的優點,例如,java.util.Hashtable提供。
聲明
以下是java.lang.Object.hashCode()方法的聲明
public int hashCode()
參數
-
NA
返回值
此方法返回該對象的哈希碼值。
異常
-
NA
例子
下麵的例子顯示了lang.Object.hashCode()方法的使用。
package com.yiibai; import java.util.GregorianCalendar; public class ObjectDemo { public static void main(String[] args) { // create a new ObjectDemo object GregorianCalendar cal = new GregorianCalendar(); // print current time System.out.println("" + cal.getTime()); // print a hashcode for cal System.out.println("" + cal.hashCode()); // create a new Integer Integer i = new Integer(5); // print i System.out.println("" + i); // print hashcode for i System.out.println("" + i.hashCode()); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Sat Sep 22 00:35:34 EEST 2012 -458465658 5 5