當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。