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


Java integer转boolean用法及代码示例


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

例子:

Input: int = 1
Output: true

Input: int = 0
Output: false

方法:

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

范例1:


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

范例2:


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




相关用法


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