java.lang.Boolean.booleanValue() 方法返回此布尔对象的值作为布尔基元。
语法
public boolean booleanValue()
参数
无需参数。
返回值
返回此对象的原始布尔值。
异常
无。
示例:
在下面的示例中,java.lang.Boolean.booleanValue() 方法在转换为 boolean 类型后返回一个 Boolean 对象。
import java.lang.*;
public class MyClass {
public static void main(String[] args) {
//创建布尔对象
Boolean b1 = true;
Boolean b2 = false;
//打印布尔对象的booleanValue
System.out.println("booleanValue of the b1 is: " + b1.booleanValue());
System.out.println("booleanValue of the b2 is: " + b2.booleanValue());
}
}
上述代码的输出将是:
booleanValue of the b1 is: true
booleanValue of the b2 is: false