Changeset d96f7c4 for doc/refrat
- Timestamp:
- Jan 17, 2025, 3:46:34 PM (5 days ago)
- Branches:
- master
- Children:
- df56e25
- Parents:
- 3b340d68
- Location:
- doc/refrat
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/refrat/keywords.tex
r3b340d68 rd96f7c4 11 11 %% Created On : Sun Aug 6 08:17:27 2017 12 12 %% Last Modified By : Peter A. Buhr 13 %% Last Modified On : Fri Apr 6 15:16:11 201814 %% Update Count : 713 %% Last Modified On : Fri Jan 17 14:45:13 2025 14 %% Update Count : 8 15 15 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 16 16 \begin{tabular}{@{}llllll@{}} … … 28 28 ©exception© \\ 29 29 ©fallthrough© \\ 30 ©fallthru© \\31 30 \end{tabular} 32 31 & -
doc/refrat/refrat.tex
r3b340d68 rd96f7c4 11 11 %% Created On : Wed Apr 6 14:52:25 2016 12 12 %% Last Modified By : Peter A. Buhr 13 %% Last Modified On : Mon Oct 5 09:02:53 202014 %% Update Count : 11 013 %% Last Modified On : Fri Jan 17 14:45:04 2025 14 %% Update Count : 111 15 15 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 16 16 … … 3348 3348 3349 3349 The ©choose© statement is the same as the ©switch© statement except control transfers to the end of the ©choose© statement at a ©case© or ©default© labeled statement. 3350 The ©fallthr u© statement is used to fall through to the next ©case© or ©default© labeled statement.3350 The ©fallthrough© statement is used to fall through to the next ©case© or ©default© labeled statement. 3351 3351 The following have identical meaning: 3352 3352 \begin{flushleft} … … 3366 3366 case 1: ... ; // exit 3367 3367 case 2: ... ; // exit 3368 case 3: ... ; fallthr u;3369 case 4: ... ; fallthr u;3368 case 3: ... ; fallthrough; 3369 case 4: ... ; fallthrough; 3370 3370 default: ... ; // exit 3371 3371 }
Note: See TracChangeset
for help on using the changeset viewer.