August 1999
Intermediate to advanced
1488 pages
72h 53m
English
break label;
The keyword break provides a way to exit out of loop structures and switch conditionals prematurely. Most of the time, the word break appears on a line by itself, but there are times when a label will follow the keyword (see Table 6.21). When a label is used, code execution completely breaks out of the area designated by label and proceeds to the code that follows the area. To label a statement, simply place the label name followed by a colon (:) in front of the code that needs to be broken out of during code execution.
| Type | Item | Description |
|---|---|---|
| Argument | label | A label that designates ... |
Read now
Unlock full access