std::is_error_code_enum
来自 cppreference.com
< cpp | error | error code
定义在头文件 <system_error> 中 |
||
template< class T > struct is_error_code_enum; |
(自 C++11 起) | |
如果 T
是一个错误代码枚举(例如 std::io_errc 和 std::future_errc),则此模板提供成员常量 value 等于 true。对于任何其他类型,value 为 false。
此模板可以针对 程序定义类型 进行专门化,以指示该类型有资格进行 std::error_code 隐式转换。
内容 |
[编辑] 辅助变量模板
template< class T > constexpr bool is_error_code_enum_v = is_error_code_enum<T>::value; |
(自 C++17 起) | |
继承自 std::integral_constant
成员常量
value [静态] |
true 如果 T 是一个错误代码枚举,否则为 false(公共静态成员常量) |
成员函数
operator bool |
将对象转换为 bool,返回 value (公共成员函数) |
operator() (C++14) |
返回 value (公共成员函数) |
成员类型
类型 | 定义 |
value_type
|
bool |
type
|
std::integral_constant<bool, value> |
运行此代码
#include <ios> #include <system_error> static_assert(std::is_error_code_enum_v<decltype(std::io_errc::stream)>); static_assert(!std::is_error_code_enum_v<std::error_category>); int main() {}
[编辑] 另请参阅
(C++11) |
将枚举识别为 std::error_condition (类模板) |