bugl
bugl
HomeLearnPatternsPathsSearch
HomeLearnPatternsPathsSearch

Loading lesson path

Learn/Java/Java Tutorial
Java•Java Tutorial

Java Else

Flash cards

Review the key moves

1/4
Core idea

What is the main idea behind Java Else?

Lesson checks

Practice each idea before moving on

Short Mimo-style checks built from this lesson's code, terms, and sequence.

1Quick choice

Which statement best captures the main point of this lesson?

2Fill blank

Complete the missing token from the example code.

___ ( condition ) {
3Order

Put the learning moves in the order that makes the concept easiest to apply.

Think of it like real life: If it rains, bring an umbrella.
The else statement lets you run a block of code when the condition in the if statement is false .
The else Statement

The else Statement

The else statement lets you run a block of code when the condition in the if statement is false .

Syntax

if ( condition ) {
 // block of code to be executed if the condition is true
} else {
// block of code to be executed if the condition is false
}

Think of it like real life: If it rains, bring an umbrella. Otherwise (else) , go outside without one :

Example

boolean isRaining = false;
if (isRaining) {
  System.out.println("Bring an umbrella!");
} else {
System.out.println("No rain today, no need for an umbrella!");
}

Since isRaining is false, the condition inside the if statement is not met. That means the if block is skipped, and the else block runs instead, printing "No rain today, no need for an umbrella!".

Another Example

This example says good day or good evening depending on the time:

Example

int time = 20;
if (time < 18) {
  System.out.println("Good day.");
} else {
System.out.println("Good evening.");
}
// Outputs "Good evening."

In the example above, time (20) is greater than 18, so the condition is false . Because of this, we move on to the else condition and print to the screen "Good evening". If the time was less than 18, the program would print "Good day".

Notes

  • else does not have a condition - it runs when the if condition is false .
  • Do not put a semicolon right after if (condition) . That would end the statement early and make else behave unexpectedly.

Previous

Java If ... Else

Next

Java Else If