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