命名空间
变体
操作

语句

来自 cppreference.com
< cpp‎ | 语言
 
 
C++ 语言
表达式
替代表示
字面量
布尔型 - 整型 - 浮点型
字符型 - 字符串型 - nullptr (C++11)
用户定义的 (C++11)
实用工具
属性 (C++11)
类型
typedef 声明
类型别名声明 (C++11)
强制转换
内存分配
特定于类的函数属性
explicit (C++11)
static

特殊成员函数
模板
其他
 
 

语句 是 C++ 程序中按顺序执行的代码片段。任何函数的函数体都是一系列语句。例如

int main()
{
    int n = 1;                        // declaration statement
    n = n + 1;                        // expression statement
    std::cout << "n = " << n << '\n'; // expression statement
    return 0;                         // return statement
}

C++ 包括以下类型的语句

1) 带标签的语句;
2) 表达式语句;
3) 复合语句;
4) 选择语句;
5) 迭代语句;
6) 跳转语句;
7) 声明语句;
8) 尝试块;
9) 原子和同步块 (TM TS).

内容

[编辑] 带标签的语句

带标签的语句为语句添加标签以用于控制流目的。

label statement
label - 应用于该语句的标签(定义如下)
statement - 标签应用于的语句,它本身可以是带标签的语句,允许使用多个标签

[编辑] 标签

label 定义为

attr (可选) identifier : (1)
attr (可选) case constexpr : (2)
attr (可选) default: (3)
1) goto 的目标;
2) case switch 语句中的标签;
3) default switch 语句中的标签。

属性 序列 attr 可以出现在标签的开头(在这种情况下,它应用于标签),也可以出现在任何语句本身之前,在这种情况下,它应用于整个语句。

(自 C++11 起)

在函数内声明的带标识符的标签与该函数中所有具有相同标识符的 goto 语句匹配,在所有嵌套块中,在其自身声明之前和之后。

函数中的两个标签不能具有相同的标识符。

除了添加到语句外,标签也可以用在 复合语句 中的任何地方。

(自 C++23 起)

标签不会被 非限定查找 找到:标签可以与程序中的任何其他实体具有相同的名称。

void f()
{
    {
        goto label; // label in scope even though declared later
        label:      // label can appear at the end of a block standalone since C++23
    }
    goto label; // label ignores block scope
}
 
void g()
{
    goto label; // error: label not in scope in g()
}

[编辑] 控制流限制语句

以下语句是控制流限制语句 

(自 C++17 起)
(自 C++23 起)

对于每个控制流限制语句 S

  • S 中声明的所有 goto 目标标签只能被 S 中的语句引用。
  • 每个 casedefault 标签只能与 S 中的 switch 语句 关联。

[编辑] 表达式语句

表达式语句是一个表达式后面跟着一个分号。

attr (可选) expression (可选) ;
attr - (自 C++11 起) 可选的任意数量的 属性 序列
表达式 - 一个 表达式

大多数典型的 C++ 程序中的语句都是表达式语句,例如赋值或函数调用。

没有表达式的表达式语句称为空语句。它通常用于为 forwhile 循环提供一个空体。 它也可以用于在复合语句的末尾携带一个标签。(直到 C++23)

[编辑] 复合语句

复合语句或将一系列语句组合成一个语句。

attr (可选) { statement... (可选) label... (可选)(自 C++23 起) }

当需要一个语句,但需要按顺序执行多个语句时(例如,在 if 语句或循环中),可以使用复合语句

if (x > 5)          // start of if statement
{                   // start of block
    int n = 1;      // declaration statement
    std::cout << n; // expression statement
}                   // end of block, end of if statement

每个复合语句都引入自己的块 作用域;在块内部声明的变量在关闭的大括号处按相反的顺序销毁

int main()
{ // start of outer block
    {                                // start of inner block
        std::ofstream f("test.txt"); // declaration statement
        f << "abc\n";                // expression statement
    }                                // end of inner block, f is flushed and closed
    std::ifstream f("test.txt"); // declaration statement
    std::string str;             // declaration statement
    f >> str;                    // expression statement
} // end of outer block, str is destroyed, f is closed

复合语句末尾的 标签 被视为紧跟着一个空语句。

(自 C++23 起)

[编辑] 选择语句

选择语句在几种控制流中选择一种。

attr (可选) if constexpr(可选) ( init-statement (可选) condition ) statement (1)
attr (可选) if constexpr(可选) ( init-statement (可选) condition ) statement else statement (2)
attr (可选) switch ( init-statement (可选) condition ) statement (3)
attr (可选) if !(可选) consteval compound-statement (4) (自 C++23 起)
attr (可选) if !(可选) consteval compound-statement else statement (5) (自 C++23 起)
1) if 语句;
2) 带有 else 子句的 if 语句;
3) switch 语句;
4) consteval if 语句;
5) 带有 else 子句的 consteval if 语句。

[编辑] 迭代语句

迭代语句重复执行某些代码。

attr (可选) while ( condition ) statement (1)
attr (可选) do statement while ( expression ) ; (2)
attr (可选) for ( init-statement condition (可选) ; expression (可选) ) statement (3)
attr (可选) for ( init-statement (可选)(自 C++20 起) for-range-decl : for-range-init ) statement (4) (自 C++11 起)
1) while 循环;
2) do-while 循环;
3) for 循环;
4) 范围 for 循环。

[编辑] 跳转语句

跳转语句无条件地转移控制流。

attr (可选) break; (1)
attr (可选) continue; (2)
attr (可选) return expression (可选) ; (3)
attr (可选) return braced-init-list ; (4) (自 C++11 起)
attr (可选) goto identifier ; (5)
1) break 语句;
2) continue 语句;
3) 带有可选表达式的 return 语句;
4) 使用 列表初始化return 语句;
5) goto 语句。

注意:对于所有跳转语句,从循环中、从块中或返回到具有自动存储持续时间的已初始化变量之前,都涉及销毁在转移点之前但在转移点之后的作用域中的具有自动存储持续时间的对象。如果初始化了多个对象,则销毁顺序与初始化顺序相反。

[编辑] 声明语句

声明语句将一个或多个标识符引入块。

block-declaration (1)
1) 有关详细信息,请参阅 声明初始化

[编辑] try

try 块捕获在执行其他语句时抛出的异常。

attr (可选) try compound-statement handler-sequence (1)
1) 有关详细信息,请参阅 try


原子块和同步块

原子块和同步块提供 事务内存

synchronized compound-statement (1) (TM TS)
atomic_noexcept compound-statement (2) (TM TS)
atomic_cancel compound-statement (3) (TM TS)
atomic_commit compound-statement (4) (TM TS)
1) 同步块,以所有同步块的单个总顺序执行;
2) 原子块,在发生异常时中止;
3) 原子块,在发生异常时回滚;
4) 原子块,在发生异常时提交。
(TM TS)

[编辑] 另请参阅

C 文档 关于 语句