std::system_error
来自cppreference.com
![]() |
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <system_error> 中定义
|
||
class system_error; |
(C++11 起) | |
std::system_error
是由不同的库函数(通常的功能,与OS设施接口,例如,构造函数std::thread),异常时,有一个相关联的std::error_code需要报告抛出的异常类型.原文:
std::system_error
is the type of the exception thrown by various library functions (typically the functions that interface with the OS facilities, e.g. the constructor of std::thread), when the exception has an associated std::error_code which needs to be reported.目录 |
[编辑] 成员函数
构建 system_error 对象(公共成员函数) | |
返回错误代码 (公共成员函数) | |
[虚]</div></div>
|
返回解释性字符串 (公有虚成员函数) |
继承自 std::exception
Member functions
[虚]</div></div>
|
析构该异常对象 ( std::exception 的公有虚成员函数)
|
[虚]</div></div>
|
返回一个说明字符串 ( std::exception 的公有虚成员函数)
|
</div>
[编辑] 示例
#include <thread> #include <iostream> #include <system_error> 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