命名空间
变体
操作

std::unreachable

来自 cppreference.com
< cpp‎ | utility
 
 
实用程序库
语言支持
类型支持 (基本类型,RTTI)
库特性测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三元比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
 
在头文件 <utility> 中定义
[[noreturn]] void unreachable();
(自 C++23 起)

在给定点处调用 未定义行为

实现可以使用此方法优化不可能的代码分支(通常在优化版本中)或将它们捕获以防止进一步执行(通常在调试版本中)。

内容

[编辑] 备注

特性测试 Std 特性
__cpp_lib_unreachable 202202L (C++23) std::unreachable

[编辑] 可能的实现

[[noreturn]] inline void unreachable()
{
    // Uses compiler specific extensions if possible.
    // Even if no extension is used, undefined behavior is still raised by
    // an empty function body and the noreturn attribute.
#if defined(_MSC_VER) && !defined(__clang__) // MSVC
    __assume(false);
#else // GCC, Clang
    __builtin_unreachable();
#endif
}

[编辑] 示例

#include <cassert>
#include <cstddef>
#include <cstdint>
#include <utility>
#include <vector>
 
struct Color { std::uint8_t r, g, b, a; };
 
// Assume that only restricted set of texture caps is supported.
void generate_texture(std::vector<Color>& tex, std::size_t xy)
{
    switch (xy)
    {
    case 128: [[fallthrough]];
    case 256: [[fallthrough]];
    case 512: /* ... */
        tex.clear();
        tex.resize(xy * xy, Color{0, 0, 0, 0});
        break;
    default:
        std::unreachable();
    }
}
 
int main()
{
    std::vector<Color> tex;
    generate_texture(tex, 128); // OK
    assert(tex.size() == 128 * 128);
    generate_texture(tex, 32);  // Results in undefined behavior
}

可能的输出

Segmentation fault

[编辑] 另请参见

[[assume(表达式)]](C++23) 指定 表达式 始终在给定点处计算为 true
(属性说明符)[编辑]
通知编译器指针已对齐
(函数模板) [编辑]
C 文档 适用于 unreachable

[编辑] 外部链接

1.  GCC 文档:__builtin_unreachable
2.  Clang 文档:__builtin_unreachable
3.  MSVC 文档:__assume