命名空间
变体
操作

std::is_error_code_enum<std::io_errc>

来自 cppreference.com
< cpp‎ | io‎ | io errc
定义于头文件 <ios>
template<>
struct is_error_code_enum<std::io_errc> : public std::true_type {};
(自 C++11 起)

std::is_error_code_enum 的特化告知其他库组件,类型为 std::io_errc 的值是保存错误代码的枚举,这使得它们可以隐式转换为类型为 std::error_code 的对象并可为其赋值。

内容

std::integral_constant 继承而来

成员常量

value
[静态]
true
(公共静态成员常量)

成员函数

operator bool
将对象转换为 bool,返回 value
(公共成员函数)
operator()
(C++14)
返回 value
(公共成员函数)

成员类型

类型 定义
value_type bool
type std::integral_constant<bool, value>

[edit] 示例

由于 std::is_error_code_enum<std::io_errc>::value == true,因此 e.code()std::io_errc::stream 之间的比较可以编译。

#include <fstream>
#include <iostream>
 
int main()
{
    std::ifstream f("doesn't exist");
    try
    {
        f.exceptions(f.failbit);
    }
    catch (const std::ios_base::failure& e)
    {
        std::cout << "Caught an ios_base::failure.\n";
        if (e.code() == std::io_errc::stream)
            std::cout << "The error code is std::io_errc::stream\n";
    }
}

输出

Caught an ios_base::failure.
The error code is std::io_errc::stream

[edit] 另请参阅

将类识别为 error_code 枚举
(类模板) [edit]
保存平台相关的错误代码
(类) [edit]
(C++11)
I/O 流错误代码
(枚举) [edit]