命名空间
变体
操作

C++ 关键字: goto

来自 cppreference.cn
< cpp‎ | 关键字
 
 
C++ 语言
通用主题
流程控制
条件执行语句
if
迭代语句 (循环)
for
范围-for (C++11)
跳转语句
函数
函数声明
Lambda 函数表达式
inline 说明符
动态异常规范 (直到 C++17*)
noexcept 说明符 (C++11)
异常
命名空间
类型
说明符
const/volatile
decltype (C++11)
auto (C++11)
constexpr (C++11)
consteval (C++20)
constinit (C++20)
存储持续性说明符
初始化
 
 

[编辑] 用法

  • goto 语句:作为语句的声明

[编辑] 示例

#include <cassert>
#include <string>
 
[[nodiscard]] auto get_first_line(const std::string& string)
{
    std::string first_line{};
    for (const auto character : string)
        switch (character)
        {
            case '\n':
                goto past_for; // breaks from 'range-for loop'
            default:
                first_line += character;
                break;
        }
past_for:
    return first_line;
}
 
int main()
{
    assert(get_first_line("Hello\nworld!") == "Hello");
}

[编辑] 参见

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