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