Java.lang.Short 类

java.lang.Short.hashCode() 方法返回与 Short 兼容的 Short 值的哈希代码。 hashCode().

语法

public static int hashCode(short value)

参数

指定要哈希的值。

返回值

返回短值的哈希代码值。

异常

不适用。

示例:

在下面的示例中,java.lang.Short.hashCode() 方法返回给定短值的哈希码。

import java.lang.*;

public class MyClass {
  public static void main(String[] args) {
    
    //创建短值
    short val1 = 1025;
    short val2 = -1025;

    //打印短值的哈希码
    System.out.println("hashCode of the val1 is: " + Short.hashCode(val1)); 
    System.out.println("hashCode of the val2 is: " + Short.hashCode(val2));   
  }
}

上述代码的输出将是:

hashCode of the val1 is: 1025
hashCode of the val2 is: -1025