位置:首页 > Java技术 > java.lang > java.lang.Object.hashCode()方法实例

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