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