Namespaces
Variants

std::system_error:: operator=

From cppreference.net
Utilities library
system_error & operator = ( const system_error & other ) noexcept ;
(C++11 이후)

other 의 내용을 할당합니다. 만약 * this other 가 모두 동적 타입 std::system_error 를 갖는 경우, 할당 후 std:: strcmp ( what ( ) , other. what ( ) ) == 0 입니다.

매개변수

other - 할당할 다른 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]