std::make_error_condition(std::future_errc)
来自 cppreference.com
< cpp | thread | future errc
定义在头文件中 <future> |
||
std::error_condition make_error_condition( std::future_errc e ); |
(自 C++11 起) | |
从 std::error_condition 类型的值构造一个 std::future_errc 对象,就像通过
std::error_condition(static_cast<int>(e), std::future_category()).
内容 |
[编辑] 参数
e | - | 错误代码编号 |
[编辑] 返回值
一个 std::error_condition 类型的 value,它保存与错误类别 "future" 关联的来自 e
的错误代码编号。
[编辑] 示例
本节尚未完善 原因:没有示例 |
[编辑] 另请参阅
(C++11) |
保存便携式错误代码 (类) |
(C++11) |
识别未来错误代码 (枚举) |