Very often, in programming, you will need a data type that can only have one of two values, like:
For this, Kotlin has a Boolean
data type, which can take the values true
or false
.
A boolean type can be declared with the Boolean
keyword and can only take the values true
or false
:
val isKotlinFun: Boolean = true
val isFishTasty: Boolean = false
println(isKotlinFun) // Outputs true
println(isFishTasty) // Outputs false
Try it Yourself »
Just like you have learned with other data types in the previous chapters, the example above can also be written without specifying the type, as Kotlin is smart enough to understand that the variables are Booleans:
val isKotlinFun = true
val isFishTasty = false
println(isKotlinFun) // Outputs true
println(isFishTasty) // Outputs false
Try it Yourself »
A Boolean expression returns a Boolean value: true
or false
.
You can use a comparison operator, such as the greater than (>
) operator to find out if an expression (or a variable) is true:
val x = 10
val y = 9
println(x > y) // Returns true, because 10 is greater than 9
Try it Yourself »
Or even easier:
In the examples below, we use the equal to (==
) operator to evaluate an expression:
val x = 10;
println(x == 10); // Returns true, because the value of x is equal to 10
Try it Yourself »
The Boolean value of an expression is the basis for all Kotlin comparisons and conditions.
You will learn more about conditions in the next chapter.
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!