std::make_error_code(std::future_errc)
来自 cppreference.com
< cpp | thread | future errc
定义在头文件 <future> 中 |
||
std::error_code make_error_code( std::future_errc e ); |
(自 C++11) | |
使用类型为 std::future_errc 的值构造 std::error_code 对象,如同:
std::error_code(static_cast<int>(e), std::future_category()).
当给定 std::future_errc 参数时,此函数由 std::error_code 的构造函数调用。
内容 |
[编辑] 参数
e | - | 错误代码编号 |
[编辑] 返回值
类型为 std::error_code 的值,它保存与错误类别 "future" 关联的 e
中的错误代码编号。
[编辑] 示例
本节尚未完善 原因:没有示例 |
[编辑] 另请参阅
(C++11) |
保存平台相关的错误代码 (类) |
(C++11) |
识别期货错误代码 (枚举) |
(C++11) |
为 errc 枚举 e 创建错误代码值(函数) |
构造一个输入/输出流错误代码 (函数) |