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


Java Boolean booleanValue()用法及代碼示例


布爾類的booleanValue()方法是Java中的一個內置方法,用於返回實例的原始布爾值,該實例的布爾值用於調用方法booleanValue()。

用法

BooleanObject.booleanValue()

返回值:它返回一個原始的布爾值。


下麵是說明booleanValue()方法的示例:

示例1:

class GeeksforGeeks { 
  
    // Driver method 
    public static void main(String[] args) 
    { 
  
        // creating a Boolean object. 
        Boolean b = new Boolean(true); 
  
        // get primitive data type using booleanValue() 
        boolean value = b.booleanValue(); 
  
        // Print the result 
        System.out.println(value); 
    } 
}
輸出:
true

示例2:

class GeeksforGeeks { 
  
    // Driver method 
    public static void main(String[] args) 
    { 
  
        // creating a Boolean object. 
        Boolean b = new Boolean(false); 
  
        // get primitive data type using booleanValue() 
        boolean value = b.booleanValue(); 
  
        // Print the result 
        System.out.println(value); 
    } 
}
輸出:
false


相關用法


注:本文由純淨天空篩選整理自ShivamKD大神的英文原創作品 Boolean booleanValue() method in Java with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。