Namespaces
Variants

C++ keyword: for

From cppreference.net
C++ language
General topics
Flow control
Conditional execution statements
Iteration statements (loops)
Jump statements
Functions
Function declaration
Lambda function expression
inline specifier
Dynamic exception specifications ( until C++17* )
noexcept specifier (C++11)
Exceptions
Namespaces
Types
Specifiers
constexpr (C++11)
consteval (C++20)
constinit (C++20)
Storage duration specifiers
Initialization
Expressions
Alternative representations
Literals
Boolean - Integer - Floating-point
Character - String - nullptr (C++11)
User-defined (C++11)
Utilities
Attributes (C++11)
Types
typedef declaration
Type alias declaration (C++11)
Casts
Memory allocation
Classes
Class-specific function properties
Special member functions
Templates
Miscellaneous

Использование

  • for цикл: как объявление цикла
  • range-based for loop: как объявление цикла
(since C++11)

Пример

#include <iostream>
int main() noexcept
{
    // Следующий оператор цикла 'for':
    // 1. (init-statement) Объявляет целое число с именем 'i' и инициализирует его значением '0'.
    // 2. (condition)      Проверяет, меньше ли i 3, и если нет, завершает выполнение цикла.
    // 3. (statement)      Выводит текущее значение целого числа 'i' в stdout.
    // 4. (expression)     Пре-инкрементирует целое число 'i' (увеличивает его значение на 1).
    // 5.                  Возвращается к пункту 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)
(начиная с C++20)