Use the else
statement to specify a block of code to be executed if the condition is false
.
int time = 20;
if (time < 18) {
System.out.println("Good day.");
} else {
System.out.println("Good evening.");
}
// Outputs "Good evening."
The else
statement specifies a block of Java code to be executed if a condition is false
in an if
statement.
Java has the following conditional statements:
if
to specify a block of code to be executed, if a specified condition is trueelse
to specify a block of code to be executed, if the same condition is falseelse if
to specify a new condition to test, if the first condition is falseswitch
to specify many alternative blocks of code to be executedUse the else if
statement to specify a new condition if the first condition is false
.
int time = 22;
if (time < 10) {
System.out.println("Good morning.");
} else if (time < 20) {
System.out.println("Good day.");
} else {
System.out.println("Good evening.");
}
// Outputs "Good evening."
Read more about conditions in our Java If...Else Tutorial.
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!