std::system_error::operator=
來自 cppreference.com
system_error& operator=( const system_error& other ) noexcept; |
(C++11 起) | |
將內容賦給 other 的內容。如果 *this 和 other 都具有動態型別 std::system_error
,則賦值後 std::strcmp(what(), other.what()) == 0。
[編輯] 引數
其他 | - | 要賦值的另一個 system_error 物件 |
[編輯] 返回值
*this
[編輯] 示例
執行此程式碼
#include <cassert> #include <cstring> #include <iostream> #include <system_error> void print(const std::system_error& e) { std::cout << "code: [" << e.code() << "]\n" "message: [" << e.code().message() << "]\n" "what: [" << e.what() << "]\n\n"; } int main() { std::system_error e1(EDOM, std::generic_category(), "Error info #1"); print(e1); std::system_error e2(EIO, std::system_category(), "Error info #2"); print(e2); e1 = e2; assert(std::strcmp(e1.what(), e2.what()) == 0); print(e1); }
可能的輸出
code: [generic:33] message: [Numerical argument out of domain] what: [Error info #1: Numerical argument out of domain] code: [system:5] message: [Input/output error] what: [Error info #2: Input/output error] code: [system:5] message: [Input/output error] what: [Error info #2: Input/output error]