Home > Common Problem > body text

How to use boolean in java

小老鼠
Release: 2023-11-13 15:34:50
Original
2020 people have browsed it

In Java, boolean is a basic data type with only two possible values: true and false. The boolean type is often used for conditional testing, such as comparison or checking whether a certain condition is met.

Here are some examples showing how to use boolean type in Java:

Declaring boolean variables:

boolean isTrue;
Copy after login

Assign a value to true or false:

isTrue = true;
Copy after login

or

isTrue = false;
Copy after login

Use a boolean expression in the if statement:

if (isTrue) {  
    System.out.println("The statement is true.");  
} else {  
    System.out.println("The statement is false.");  
}
Copy after login

Use boolean expressions in while statements:

boolean running = true;  
while (running) {  
    // do something  
    if (someCondition) {  
        running = false;  
    }  
}
Copy after login

Boolean logical operations (&&, ||, !):

boolean a = true;  
boolean b = false;  
  
// 使用&& (AND) 操作符  
if (a && b) {  
    System.out.println("Both a and b are true.");  
} else {  
    System.out.println("At least one of a or b is false.");  
}  
  
// 使用|| (OR) 操作符  
if (a || b) {  
    System.out.println("At least one of a or b is true.");  
} else {  
    System.out.println("Both a and b are false.");  
}  
  
// 使用! (NOT) 操作符  
if (!a) {  
    System.out.println("a is false.");  
} else {  
    System.out.println("a is true.");  
}
Copy after login

The above is the detailed content of How to use boolean in java. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!