bugl
bugl
HomeLearnPatternsPathsSearchPremium
HomeLearnPatternsPaths

Loading lesson path

Learn/Java/Java Reference
Java•Java Reference

Java else Keyword

❮ Java Keywords

else

Definition and Usage

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

  • Use if to specify a block of code to be executed, if a specified condition is true
  • Use else to specify a block of code to be executed, if the same condition is false
  • Use else if to specify a new condition to test, if the first condition is false
  • Use switch to specify many alternative blocks of code to be executed

Related Pages

Read more about conditions in our Java If...Else Tutorial .

❮ Java Keywords

Previous

Java double Keyword

Next

Java enum Keyword