C++ キーワード: for
From cppreference.com
[編集] 使用法
- for ループ: ループの宣言として
|
(C++11以降) |
[編集] 例
このコードを実行
#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; }
出力
012
[編集] 関連項目
|
(C++17以降) |
|
(C++23から) |
- switch ステートメント:
switch,case - default (case ラベル宣言として) など:
default - goto ステートメント:
goto - continue ステートメント:
continue - break ステートメント:
break - return ステートメント:
return
| (C++20以降) |