We will learn about the switch keyword in Java programming language
The switch is always used with case keyword.
the case is used with switch statement gives you the option to check a range of value for your variable. The switch statement invokes one statement from multiple conditions.
Syntax
Syntax of switch in Java
switch(expression){//switch keyword with expression case value1; // some code here break;//it is optional case value2; // some code here break;//it is optional ..................... ...................... default;// this statement is executed if all cases are not matched }
Example
Program
public class switch_keyword{ public static void main (String args[]){ String Days="Friday"; switch(Days){ case "Sunday": //case statement using case keyword System.out.println("Today Sunday"); break; case "Monday": System.out.println("Today Monday"); break; case "Tuesday": System.out.println("Today Tuesday"); break; case "Wednesday": System.out.println("Today Tuesday"); break; case "Thursday": System.out.println("Today Thursday"); break; case "Friday": System.out.println("Today Friday"); break; case "Saturday": System.out.println("Today Saturday"); break; default : System.out.println("This is not a day"); } } }
When the above code is compiled and executed, it will produce the following results
Today Friday
There are other Java language keywords that are similar to this keyword
static keyword in Java language
extends keyword in Java language
Suggested for you
Usage of final keyword in Java
Finally keyword in Java language
Array Data Structure: Definition, Types, Operations & Advantages Array Data Structure Introduction In this post,…
20 ways to subtract two numbers in Java In this article, we will discuss the…
10 simple ways to add two numbers in Java In this article, we will discuss…
Write a Python program to find the first n prime numbers In this article we…
Python: Calculate Average of odd and even in a list using loops In this post,…
Python: Average of Odd & Even Numbers from User Input In this post, we will…