Java

Java Switch Statement with Programming Examples

Java Switch Statement:

Java Switch Statement:- Java provides an alternative to case discrimination nested if-else constructions to the switch construction. The expression is passed to switch – a number, a Boolean value, an enum object, or string. Subsequently, the code of all case blocks from the first applicable Constant. break terminates the entire switch construction. The optional default block is provided for the case that no case constant applies. For the statements after case or default, no curved brackets are required. Clarify the syntax of the following line:

syntax of Java switch statement:

The constants introduced with the word symbol case with the following Colons define entry marks for the program sequence. Between two such entry marks do not necessarily have to contain instructions. There are also the abort statements (break;) and the label default: and the following statements optional. In principle, the statements in the switch block are a sequence of instructions, some of which are marked as entry points. Here namely, the expression is evaluated first, the result type of which is a byte, must be short, int or char. The program sequence will then be exactly the case label, which contains the result of the expression as a constant, until a break statement is encountered, via which the java switch Statement terminated immediately. If the result of the expression is not in any case If an instruction is found, then the program is executed with the instructions continued after the default mark. It should be noted that not only each by a case mark marked instructions are executed, but that with the execution all subsequent statements are continued and only the next break Statement aborts the execution of the entire java switch statement and the Program flow with the first statement outside the switch statement continues. Here is an example:

In this java switch statement, the value 20 is assigned to the variable b, if a is 1, 2, or 3. Why? If a has the value 1, then at first becomes the first case mark jumped and the value 10 assigned to the variable b. After that, however, processing continues with the next statement, since not with a break statement explicitly to leave the entire switch Instruction was prompted. After the second case mark there is no Command executed and processing continues with the instruction after the third case brand. Now variable b is assigned the value 20 and then leave the entire java switch statement with a break statement.

If a contains the value 4 at the beginning of the java switch statement, then b becomes the value 30, in all other cases b contains after the execution of the java switch statement finally has the value 40. There is no expression for a switch statement at runtime a suitable case mark and no default mark, so the whole remains switch statement for the program flow has no effect (such as an empty Statement, only the execution of the java switch statement takes more time Claim).



Note:

Don’t forget to break.

Without break, all statements from the first applicable case Printed to the end of the switch construction. Dignity in the above listing, the break expressions are missing and would be expression1 == constant1, if Java were to use statements 1a, 1b, 2a, 2b, 3a and 3b. This is rarely intended. Forget about so do not specify a break at the end of each case block!

Java does not offer the possibility of multiple constants or constant ranges in a case statement. However, in several cases Place instructions in a row. Follow the instructions until the next break then apply to all the constants listed above.

For example: how to find  Days per month using the java switch statement:

output:

java switch statement

Example: how to use java switch statement:

Output:

java switch statement


The java switch statement here spans eight lines (it begins at the word switch). Its execution proceeds as follows. We start by evaluating the expression appearing after the word switch (here n). Then we search in the following block if there is a label of the form case x corresponding to the value thus obtained. If this is the case, we connect to the instruction appearing after this label. Otherwise, we go to the instruction following the block. For example, when n is 0, we actually find a case 0 label and we execute the corresponding instruction, i.e :

System.out.println (“null”);

We then go naturally to the next instruction, namely here:

break;

This actually asks to get out of the block. Note that the role of this instruction is fundamental. See, as an example, what this same program would produce in the absence of instructions break:

output:

java switch statement

java switch statement

The default label:

It is possible to use the default keyword as the label to which the program will plug if no satisfactory value has been encountered before. Here is an example:

output:

java switch statement

java switch statement


Likewise, since an integer constant expression is compatible with types byte, char and short, this construction is correct:

Finally, since the syntax of the switch allows not only constants but also constant expressions, the following example is correct:

After compilation, the expressions LIMITE-1, LIMITE, and LIMITE + 1 will actually be replaced by the values ​​19, 20, and 21.

Nested Switch case statements in Java:

We can utilize a switch as a feature of the statement sequence of an external switch. This is known as a nested switch. Since a switch statement characterizes its own block, no contentions emerge between the case constants in the internal switch and those in the external switch. For example:

Example: how to find subjects by putting branch and year using java nested switch statement:

output:

java switch statement



Program Examples of Java Switch Statement:

Example: how to make Calculator using Java switch statement:

output:

java switch statement

Example: how to find the month name by putting the month number using java switch statement:

output:

java switch statement


Enter character to find whether it is a Vowel or Consonant:

java switch statement


Example: how to use wrapper class in a Java switch statement:

output:

java switch statement

Related Articles:

Java if Statement: if else, correct indentation, ternary operator, nested if

Operators in java: Arithmetic, Bit, Assignment, Comparison, Logical And Operators Priority

 

 

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button