当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java boolean转integer用法及代码示例


给定一个布尔值,任务是将此布尔值转换为 Java 中的整数值。

例子:

Input: boolean = true
Output: 1

Input: boolean = false
Output: 0

方法:

  • 获取要转换的布尔值。
  • 检查布尔值是真还是假
  • 如果布尔值为真,则将整数值设置为 1。
  • 否则,如果布尔值为 false,则将整数值设置为 0。

下面是上述方法的实现:

范例1:当布尔值为真时




// Java Program to convert boolean to integer
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // The boolean value
        boolean boolValue = true;
  
        // The expected integer value
        int intValue;
  
        // Check if it's true or false
        if (boolValue) {
            intValue = 1;
        }
        else {
            intValue = 0;
        }
  
        // Print the expected integer value
        System.out.println(
            boolValue
            + " after converting into integer = "
            + intValue);
    }
}
输出:
true after converting into integer = 1

范例2:当布尔值为假时


// Java Program to convert boolean to integer
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // The boolean value
        boolean boolValue = false;
  
        // The expected integer value
        int intValue;
  
        // Check if it's true or false
        if (boolValue) {
            intValue = 1;
        }
        else {
            intValue = 0;
        }
  
        // Print the expected integer value
        System.out.println(
            boolValue
            + " after converting into integer = "
            + intValue);
    }
}
输出:
false after converting into integer = 0




相关用法


注:本文由纯净天空筛选整理自Code_r大神的英文原创作品 Java Program to convert boolean to integer。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。