THE WORLD'S LARGEST WEB DEVELOPER SITE

Java switch Keyword

❮ Java Keywords


Example

Use the switch statement to calculate the weekday name:

int day = 4;
switch (day) {
  case 1:
    System.out.println("Monday");
    break;
  case 2:
    System.out.println("Tuesday");
    break;
  case 3:
    System.out.println("Wednesday");
    break;
  case 4:
    System.out.println("Thursday");
    break;
  case 5:
    System.out.println("Friday");
    break;
  case 6:
    System.out.println("Saturday");
    break;
  case 7:
    System.out.println("Sunday");
    break;
}
// Outputs "Thursday" (day 4)

Run example »


Definition and Usage

The switch keyword selects one of many code blocks to be executed.

From the example above, it works like this:


Related Pages

Read more about the switch statement in our Java Switch Tutorial.


❮ Java Keywords

Java switch Keyword

❮ Java Keywords


Example

Use the switch statement to calculate the weekday name:

int day = 4;
switch (day) {
  case 1:
    System.out.println("Monday");
    break;
  case 2:
    System.out.println("Tuesday");
    break;
  case 3:
    System.out.println("Wednesday");
    break;
  case 4:
    System.out.println("Thursday");
    break;
  case 5:
    System.out.println("Friday");
    break;
  case 6:
    System.out.println("Saturday");
    break;
  case 7:
    System.out.println("Sunday");
    break;
}
// Outputs "Thursday" (day 4)

Run example »


Definition and Usage

The switch keyword selects one of many code blocks to be executed.

From the example above, it works like this:


Related Pages

Read more about the switch statement in our Java Switch Tutorial.


❮ Java Keywords