Java Short hashCode()方法

java.lang.Short.hashCode() 方法返回这个Short 的哈希码值。

1 语法

public int hashCode()

2 参数

3 返回值

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

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Short hashCode()方法
 */
import java.lang.*;

public class ShortDemo {

   public static void main(String[] args) {

     // create short object and assign value to it
     short shortNum1 = 150;
     Short ShortObj1 = new Short(shortNum1);
  
     // returns hashcode
     int hcode = ShortObj1.hashCode(); 
     System.out.println("Hashcode for this Short ShortObj1 = " + hcode);
  }
}

输出结果为:

Hashcode for this Short ShortObj1 = 150

 

热门文章

优秀文章