![]() |
![]() |
|
|
![]() |
![]() |
HP C/HP-UX Reference Manual: Version A.06.05 > Chapter 6 Statements ![]() switch |
|
switch ( exp )
The switch statement is a conditional branching statement that selects among several statements based on constant values. The expression immediately after the switch keyword must be enclosed in parentheses and must be an integral expression. The expressions following the case keywords must be integral constant expressions; that is, they may not contain variables. An important feature of the switch statement is that program flow continues from the selected case label until another control-flow statement is encountered or the end of the switch statement is reached. That is, the compiler executes any statements following the selected case label until a break, goto, or return statement appears. The break statement explicitly exits the switch construct, passing control to the statement following the switch statement. Since this is usually what you want, you should almost always include a break statement at the end of the statement list following each case label. The following print_error() function, for example, prints an error message based on an error code passed to it. /* Prints error message based on error_code. The break statements are necessary to prevent the function from printing more than one error message. The last break after the default case is not really necessary, but it is a good idea to include it anyway for the sake of consistency. The switch expression is evaluated; if it matches one of the case labels, program flow continues with the statement that follows the matching case label. If none of the case labels match the switch expression, program flow continues at the default label, if it exists. (The default label need not be the last label, though it is good style to put it last.) No two case labels may have the same value. Sometimes you want to associate a group of statements with more than one case value. To obtain this behavior, you can enter consecutive case labels. The following function, for instance, returns 1 if the argument is a punctuation character, or 0 if it is anything else. /* This function returns 1 if the argument is a /* Use the switch statement to decide which comment should be printed */ If you execute this program, you get the following output: Enter student's grade: B |
![]() |
||
![]() |
![]() |
![]() |
|||||||||||||
|