Jump Statements (C++)
A C++ jump statement performs an immediate local transfer of control.
break;
continue;
return [expression];
goto identifier;
Remarks
See the following topics for a description of the C++ jump statements.
Questo browser non è più supportato.
Esegui l'aggiornamento a Microsoft Edge per sfruttare i vantaggi di funzionalità più recenti, aggiornamenti della sicurezza e supporto tecnico.
A C++ jump statement performs an immediate local transfer of control.
break;
continue;
return [expression];
goto identifier;
See the following topics for a description of the C++ jump statements.