C++ keyword: continue
From cppreference.com
[edit] Usage
-
continue
statement: as the declaration of the statement
[edit] Example
Run this code
#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:
300
[edit] See also
|
(since C++17) |
|
(since C++23) |
- switch statement:
switch
,case
- default (as case label declaration) etc:
default
- goto statement:
goto
(since C++20) |
- do-while loop and
while
loop:do
,while
- for loop and range-based
for
loop:for