Java Long hashCode()方法

java.lang.Long.hashCode() 方法返回这个Long的哈希码。结果是这个Long对象持有的原始long值的两半的异或。

1 语法

public int hashCode()

2 参数

3 返回值

此方法返回该对象的哈希码值。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Enum compareTo()方法
 */
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

 

热门文章

优秀文章