Java 程序将布尔值转换为整数
要将布尔值转换为整数,我们首先声明一个布尔基本类型的变量。
boolean bool = true;
现在,为了将其转换为整数,我们现在使用一个整数变量,并返回一个值 “1” 表示“真”和 “0” 表示“假”。
int val = (bool) ? 1 : 0;
现在,让我们在Java中了解将布尔值转换为整数的完整示例。
示例
public class Demo { public static void main(String[] args) { // boolean boolean bool = true; System.out.println("Boolean Value: "+bool); int val = (bool) ? 1 : 0; // Integer System.out.println("Integer value: "+val); } }
输出
Boolean Value: true Integer value: 1
广告