C++ 关键字: do
来自 cppreference.com
[编辑] 用法
-
do-while
循环: 作为循环的声明
[编辑] 示例
运行此代码
#include <iostream> int main() noexcept { int i{0}; // executes statement 'std::cout << ++i;' // before checking the condition 'i <= 2' do std::cout << ++i; while (i <= 2); }
输出
123
[编辑] 另请参见
|
(自 C++17 起) |
|
(自 C++23 起) |
- switch 语句:
switch
,case
- default (作为 case 标签声明) 等:
default
- goto 语句:
goto
- continue 语句:
continue
- break 语句:
break
- return 语句:
return
(自 C++20 起) |