Java.lang.Integer.hashCode() 方法
描述
java.lang.Integer.hashCode() 方法返回此 Integer 的哈希码。
声明
以下是 java.lang.Integer.hashCode() 方法的声明。
public int hashCode()
参数
NA
返回值
此方法返回此对象的哈希码值,等于此 Integer 对象表示的原始 int 值。
异常
NA
示例
下面的例子展示了 java.lang.Integer.hashCode() 方法的使用。
package com.tutorialspoint; 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