当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Short 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


相关用法


注:本文由纯净天空筛选整理自Sruti Rai大神的英文原创作品 Short hashCode() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。