命名空间
变体
操作

std::error_condition::operator=

来自 cppreference.com
 
 
实用程序库
语言支持
类型支持 (基本类型,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)

 
 
 
template< class ErrorConditionEnum >
error_condition& operator=( ErrorConditionEnum e ) noexcept;
(1) (自 C++11)
error_condition& operator=( const error_condition& other ) = default;
(2) (自 C++11)
(隐式声明)
error_condition& operator=( error_condition&& other ) = default;
(3) (自 C++11)
(隐式声明)

将内容分配给错误条件。

1) 为枚举 e 分配错误条件。实际上调用 make_error_condition,该函数仅通过 依赖于参数的查找 针对 e 找到,然后用结果替换 *this。只有当 std::is_error_condition_enum<ErrorConditionEnum>::valuetrue 时,此重载才会参与重载解析。
2,3) 隐式定义的复制赋值运算符和移动赋值运算符将 other 的内容分配给 *this

[编辑] 参数

e - 错误条件枚举
other - 要分配的另一个错误条件

[编辑] 返回值

*this.

[编辑] 缺陷报告

以下行为更改缺陷报告被追溯应用到先前发布的 C++ 标准。

DR 应用于 发布的行为 正确的行为
LWG 3629 C++11 仅使用 std::make_error_condition 重载 使用 ADL 找到的重载