std::system_error
来自 cppreference.com
定义在头文件 <system_error> 中 |
||
class system_error; |
(自 C++11 起) | |
std::system_error
是各种库函数抛出的异常的类型(通常是与操作系统设施交互的函数,例如 std::thread 的构造函数),当异常具有关联的 std::error_code 时,可以报告该异常。
继承图
内容 |
[编辑] 成员函数
构造 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]