java.lang.Long.hashCode()方法範例


java.lang.Long.hashCode() 方法返回這個Long的雜湊碼。結果是這個Long物件持有的原始long值的兩半的互斥或。

宣告

以下是java.lang.Long.hashCode()方法的宣告

public int hashCode()

引數

  • NA

返回值

此方法返回該物件的雜湊碼值。

異常

  • NA

例子

下面的例子顯示java.lang.Long.hashCode()方法的使用。

package com.yiibai;

import java.lang.*;

public class LongDemo {

   public static void main(String[] args) {

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

讓我們來編譯和執行上面的程式,這將產生以下結果:

Value = 65987