C++ keyword: continue - cppreference.com
From cppreference.com
Usage
continuestatement: as the declaration of the statement
Example
#include <iostream> #include <string> [[nodiscard]] constexpr auto get_digits(const std::string& string) noexcept { std::string digits{}; for (const auto& character: string) { if (character < '0' || character > '9') [[likely]] continue; // conditionally skips the following statement digits += character; } return digits; } int main() noexcept { std::cout << get_digits("H3LL0, W0RLD!"); }
Output:
See also
- switch statement:
switch,case - default (as case label declaration) etc:
default - goto statement:
goto
- do-while loop and
whileloop:do,while - for loop and range-based
forloop:for