Boolean_KeyWord

boolean Java Keyword with Examples

In this short article, we will discuss everything about the boolean keyword in Java.

Defines a boolean variable for the values “true” or “false” only. By default, the value of boolean primitive type is false. This keyword is also used to declare that a method returns a value of the primitive type boolean.
boolean is a Java primitive type.
A boolean variable may take on one of the values true or false.
The Boolean class is a wrapper class for the boolean primitive type.

boolean Java Keyword Examples

Note that in below example, we are using boolean variables - isEmpty and initialized.

package com.javaguides.corejava.keywords;

import java.util.ArrayList;
import java.util.List;

public class BooleanKeywordExample {
    public static void main(final String[] args) {

        boolean isEmpty = false;
        final List < Integer > integers = new ArrayList < > ();
        if (integers.size() == 0) {
            isEmpty = true;
        }

        System.out.println("Is List Empty :: " + isEmpty);
    }

    private boolean initialized = false;

    public void synchronizeConnection() {
        if (!initialized) {
            // some code here
            initialized = true;
        }
    }
}

Summary

  • A boolean variable may only take on the values true or false. A boolean may not be converted to or from any numeric type.
  • Expressions containing boolean operands can contain only boolean operands.
  • The Boolean class is a wrapper class for the boolean primitive type.
全部评论

相关推荐

06-23 11:28
门头沟学院 Java
牛客91966197...:也有可能是点拒绝的时候自动弹的话术
点赞 评论 收藏
分享
屌丝逆袭咸鱼计划:心态摆好,man,晚点找早点找到最后都是为了提升自己好进正职,努力提升自己才是最关键的😤难道说现在找不到找的太晚了就炸了可以鸡鸡了吗😤早实习晚实习不都是为了以后多积累,大四学长有的秋招进的也不妨碍有的春招进,人生就这样
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务