當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。