命名空间
变体
操作

std::system_error::operator=

来自 cppreference.com
< cpp‎ | error‎ | system error
 
 
实用程序库
语言支持
类型支持 (基本类型,RTTI)
库特性测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三方比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (在 C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
 
 
system_error& operator=( const system_error& other ) noexcept;
(自 C++11 起)

将内容分配给 other 的内容。如果 *thisother 都有动态类型 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]