19.09.2015 Views

Prentice.Hall.Introduction.to.Java.Programming,.Brief.Version.9th.(2014).[sharethefiles.com]

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

This statement checks <strong>to</strong> see whether the status matches the value 0, 1, 2, or 3, in that<br />

order. If matched, the corresponding tax is <strong>com</strong>puted; if not matched, a message is displayed.<br />

Here is the full syntax for the switch statement:<br />

3.14 switch Statements 109<br />

switch (switch-expression) {<br />

case value1: statement(s)1;<br />

break;<br />

case value2: statement(s)2;<br />

break;<br />

...<br />

case valueN: statement(s)N;<br />

break;<br />

default: statement(s)-for-default;<br />

}<br />

switch statement<br />

The switch statement observes the following rules:<br />

■ The switch-expression must yield a value of char, byte, short, int, or<br />

String type and must always be enclosed in parentheses. (Using String type in<br />

the switch expression is new in JDK 7.)<br />

■ The value1, . . ., and valueN must have the same data type as the value of the<br />

switch-expression. Note that value1, . . ., and valueN are constant expressions,<br />

meaning that they cannot contain variables, such as 1 + x.<br />

■ When the value in a case statement matches the value of the switch-expression,<br />

the statements starting from this case are executed until either a break statement or<br />

the end of the switch statement is reached.<br />

■ The default case, which is optional, can be used <strong>to</strong> perform actions when none of<br />

the specified cases matches the switch-expression.<br />

■ The keyword break is optional. The break statement immediately ends the<br />

switch statement.<br />

Caution<br />

Do not forget <strong>to</strong> use a break statement when one is needed. Once a case is matched,<br />

the statements starting from the matched case are executed until a break statement or<br />

the end of the switch statement is reached. This is referred <strong>to</strong> as fall-through behavior.<br />

For example, the following code displays the character a three times if ch is a:<br />

without break<br />

fall-through behavior<br />

switch (ch) {<br />

case 'a': System.out.println(ch);<br />

case 'b': System.out.println(ch);<br />

case 'c': System.out.println(ch);<br />

}<br />

ch is 'a'<br />

false<br />

ch is 'b'<br />

false<br />

true<br />

true<br />

System.out.println(ch)<br />

System.out.println(ch)<br />

ch is 'c'<br />

false<br />

true<br />

System.out.println(ch)<br />

Tip<br />

To avoid programming errors and improve code maintainability, it is a good idea <strong>to</strong> put a<br />

<strong>com</strong>ment in a case clause if break is purposely omitted.

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!