std::make_error_condition(std::future_errc)

< cpp‎ | thread‎ | future errc
 
 
线程支持库
线程
(C++11)
(C++20)
(C++20)
this_thread 命名空间
(C++11)
(C++11)
(C++11)
互斥
(C++11)
通用锁管理
(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
(C++11)
(C++11)
条件变量
(C++11)
信号量
闩与屏障
(C++20)
(C++20)
future
(C++11)
(C++11)
(C++11)
(C++11)
 
std::future_errc
非成员函数
make_error_condition
帮助类
 
定义于头文件 <future>
std::error_condition make_error_condition( std::future_errc e );
(C++11 起)

std::future_errc 类型值构造 std::error_condition 对象,如同用:

std::error_condition(static_cast<int>(e), std::future_category())

参数

e - 错误码号

返回值

保有关联到 error_category "future" ,保有来自 的 error_code 号 estd::error_condition 类型值。

示例

参阅

保有可移植的错误码
(类)
鉴别 future 错误码
(枚举)