📜  Java中的短 hashCode() 方法和示例

📅  最后修改于: 2022-05-13 01:54:32.581000             🧑  作者: Mango

Java中的短 hashCode() 方法和示例


Short 类的hashCode()方法是Java中的一个内置方法,用于返回 ShortObject 的哈希码。

注意: hashCode() 返回与 intValue() 相同的值。

句法

ShortObject.hashCode()

返回值:它返回一个int值,表示指定 Short 对象的哈希码。

下面是Java中 hashCode() 方法的实现:

示例 1:

// Java code to demonstrate
// Short hashCode() method
  
class GFG {
    public static void main(String[] args)
    {
  
        String value = "74";
  
        // wrapping the short value
        // in the wrapper class Short
        Short b = new Short(value);
  
        // hashCode of the Short Object
        int output = b.hashCode();
  
        // printing the output
        System.out.println("HashCode of "
                           + b + " : " + output);
    }
}
输出:
HashCode of 74 : 74

示例 2:

// Java code to demonstrate
// Short hashCode() method
  
class GFG {
    public static void main(String[] args)
    {
  
        String value = "-17";
  
        // wrapping the short value
        // in the wrapper class Short
        Short b = new Short(value);
  
        // hashCode of the Short Object
        int output = b.hashCode();
  
        // printing the output
        System.out.println("HashCode of "
                           + b + " : " + output);
    }
}
输出:
HashCode of -17 : -17