C++ Schlüsselwort: for
Von cppreference.com
[bearbeiten] Verwendung
- for-Schleife: als Deklaration der Schleife
|
(seit C++11) |
[bearbeiten] Beispiel
Führen Sie diesen Code aus
#include <iostream> int main() noexcept { // The following 'for' loop statement: // 1. (init-statement) Declares an integer named 'i' and initializes it with value '0'. // 2. (condition) Checks if i is less than 3 and if not, ends the loop execution. // 3. (statement) Writes out a current value of the integer 'i' to the stdout. // 4. (expression) Pre-increments the integer 'i' (increases its value by 1). // 5. Returns to the point 2 (condition). // init-statement: int i{0}; // condition: i < 3 for (int i{0}; i < 3; ++i) // expression: ++i std::cout << i; // statement: std::cout << i; }
Ausgabe
012
[bearbeiten] Siehe auch
|
(seit C++17) |
|
(seit C++23) |
- switch-Anweisung:
switch,case - default (als Deklaration eines case-Labels) usw.:
default - goto-Anweisung:
goto - continue-Anweisung:
continue - break-Anweisung:
break - return-Anweisung:
return
| (seit C++20) |
- do-while-Schleife und
while-Schleife:do,while