命名空间
变体
操作

std::system_error

来自 cppreference.com
< cpp‎ | 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>
class system_error;
(自 C++11 起)

std::system_error 是各种库函数抛出的异常的类型(通常是与操作系统设施交互的函数,例如 std::thread 的构造函数),当异常具有关联的 std::error_code 时,可以报告该异常。

cpp/error/exceptioncpp/error/runtime errorstd-system error-inheritance.svg

继承图

内容

[编辑] 成员函数

构造 system_error 对象
(公有成员函数) [编辑]
替换 system_error 对象
(公有成员函数) [编辑]
返回错误代码
(公有成员函数) [编辑]
[虚拟]
返回解释性字符串
(虚拟公有成员函数) [编辑]

std::exception 继承

成员函数

销毁异常对象
(std::exception 的虚拟公有成员函数) [编辑]
[虚拟]
返回解释性字符串
(std::exception 的虚拟公有成员函数) [编辑]

[编辑] 示例

#include <iostream>
#include <system_error>
#include <thread>
 
int main()
{
    try
    {
        std::thread().detach(); // attempt to detach a non-thread
    }
    catch(const std::system_error& e)
    {
        std::cout << "Caught system_error with code "
                     "[" << e.code() << "] meaning "
                     "[" << e.what() << "]\n";
    }
}

可能的输出

Caught system_error with code [generic:22] meaning [Invalid argument]