Java Integer hashCode()方法

java.lang.Integer.hashCode() 方法返回这个Integer的哈希码。

1 语法

public int hashCode()

2 参数

3 返回值

该方法返回这个对象一个哈希码值,等于这个Integer对象表示的int值。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Integer hashCode()方法
 */
import java.lang.*;

public class IntegerDemo {

   public static void main(String[] args) {

     Integer i = new Integer("20");
    
     /* returns a hash code value for this object, equal to the primitive
     int value represented by this Integer object */
     int retval = i.hashCode();
     System.out.println("Value = " + retval);
   }
}

输出结果为:

Value = 20

 

热门文章

优秀文章