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


Java Boolean hashCode()用法及代码示例


布尔类的hashCode()方法是一种内置方法,用于返回与布尔对象相对应的int哈希码值。

用法

BooleanObject.hashCode()

返回类型:它返回对应于布尔对象的int哈希码值。如果布尔对象存储的值为true,则返回1231。如果布尔对象存储的值为false,则返回1237。


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

示例1:

// java code to demonstrate 
// Boolean hashCode() method 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        // creating Boolean object 
        Boolean b = new Boolean(true); 
  
        // hashCode method of Boolean class 
        int output = b.hashCode(); 
  
        // printing the output 
        System.out.println(output); 
    } 
}
输出:
1231

示例2:

// java code to demonstrate  
// Boolean hashCode() method 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        // creating Boolean object 
        Boolean b = new Boolean(false); 
  
        // hashCode method of Boolean class 
        int output = b.hashCode(); 
  
        // printing the output 
        System.out.println(output); 
    } 
}
输出:
1237


相关用法


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