std::system_error::system_error

来自cppreference.com
< cpp‎ | error‎ | system error
 
 
工具库
语言支持
类型支持(基本类型、RTTI)
库功能特性测试宏 (C++20)
动态内存管理
程序工具
协程支持 (C++20)
变参数函数
调试支持
(C++26)
三路比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用工具
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型运算
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
常用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
初等字符串转换
(C++17)
(C++17)

 
 
 
system_error( std::error_code ec );
(1) (C++11 起)
system_error( std::error_code ec, const std::string& what_arg );
(2) (C++11 起)
system_error( std::error_code ec, const char* what_arg );
(2) (C++11 起)
system_error( int ev, const std::error_category& ecat );
(3) (C++11 起)
system_error( int ev, const std::error_category& ecat,
              const std::string& what_arg );
(4) (C++11 起)
system_error( int ev, const std::error_category& ecat,
              const char* what_arg );
(4) (C++11 起)
system_error( const system_error& other ) noexcept;
(5) (C++11 起)

构造新的系统错误对象。

1) 以错误码 ec 构造。
2) 以错误码 ec 和解释字符串 what_arg 构造。what() 返回的字符串保证含有 what_arg 为子字符串。
3) 以底层错误码 ev 和关联的错误分类 ecat 构造。
4) 以底层错误码 ev、关联的错误分类 ecat 和解释字符串 what_arg 构造。what() 返回的字符串保证含有 what_arg 为子字符串(假定它不含内嵌的空字符)。
5) 复制构造函数。以 other 的内容初始化内容。若 *thisother 均拥有动态类型 std::system_errorstd::strcmp(what(), other.what()) == 0

参数

ec - 错误码
ev - 以与 ecat 关联的枚举提供的底层错误码
ecat - 错误类别
what_arg - 解释性字符串
other - 要复制的另一 system_error

示例

演示如何从 errno 值创建 system_error 异常

#include <iostream>
#include <system_error>
 
int main()
{
    try
    {
        throw std::system_error(EDOM, std::generic_category(), "FIX ME");
    }
    catch (const std::system_error& ex)
    {
        std::cout << "code:    [" << ex.code() << "]\n"
                     "message: [" << ex.code().message() << "]\n"
                     "what:    [" << ex.what() << "]\n";
    }
}

可能的输出:

code:    [generic:33]
message: [Numerical argument out of domain]
what:    [FIX ME: Numerical argument out of domain]