boolean用法
时间: 2023-08-21 10:12:23 浏览: 172
详谈java中boolean和Boolean的区别
5星 · 资源好评率100%
Boolean是一个Java中的数据类型,它只有两个值,即true和false。Boolean类型通常用于表示条件或状态的真假值,例如if语句、while循环语句等。
以下是一些Boolean用法的示例:
1.声明一个Boolean变量并赋值:
```
boolean isRaining = true;
```
2.使用Boolean变量进行条件判断:
```
if(isRaining){
System.out.println("It's raining!");
}
```
3.使用Boolean表达式进行条件判断:
```
int x = 5;
int y = 10;
boolean result = x < y;
if(result){
System.out.println("x is less than y");
}
```
4.使用Boolean值作为方法的返回值:
```
public static boolean isEven(int number){
if(number % 2 == 0){
return true;
}else{
return false;
}
}
```
5.使用Boolean值作为方法的参数:
```
public static void printMessage(boolean flag){
if(flag){
System.out.println("The flag is true");
}else{
System.out.println("The flag is false");
}
}
```
阅读全文