Java.lang.Boolean 类

java.lang.Boolean.hashCode() 方法返回此布尔对象的哈希代码。

语法

public int hashCode()

参数

不需要参数。

返回值

返回整数第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: " + b1.hashCode()); 
    System.out.println("hashCode of the b2 is: " + b2.hashCode());   
  }
}

上述代码的输出将是:

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