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.yiibai; 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