Java.lang.Boolean 类

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

语法

public static int hashCode(boolean value)

参数

指定

返回值

如果该对象表示 true,则返回整数 1231;如果此对象表示 false,则返回整数 1237。

异常

无。

示例:

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

import java.lang.*;

public class MyClass {
  public static void main(String[] args) {
    
    //创建布尔值
    boolean b1 = true;
    boolean b2 = false;

    //打印布尔值的哈希码
    System.out.println("hashCode of the b1 is: " + Boolean.hashCode(b1)); 
    System.out.println("hashCode of the b2 is: " + Boolean.hashCode(b2));   
  }
}

上述代码的输出将是:

hashCode of the b1 is: 1231
hashCode of the b2 is: 1237