std::system_error::system_error
来自 cppreference.com
< cpp | error | system error
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 构造。
3) 使用基础错误代码 ev 和关联的错误类别 ecat 构造。
5) 复制构造函数。使用 other 的内容初始化。如果 *this 和 other 都有动态类型
std::system_error
,则 std::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]