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.
Dieser Browser wird nicht mehr unterstützt.
Führen Sie ein Upgrade auf Microsoft Edge durch, um die neuesten Features, Sicherheitsupdates und den technischen Support zu nutzen.
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.