std::expected<T,E>::operator=
来自 cppreference.com
主模板 |
||
constexpr expected& operator=( const expected& other ); |
(1) | (自 C++23 起) |
constexpr expected& operator=( expected&& other ) noexcept(/* see below */); |
(2) | (自 C++23 起) |
template< class U = T > constexpr expected& operator=( U&& v ); |
(3) | (自 C++23 起) |
template< class G > constexpr expected& operator=( const std::unexpected<G>& e ); |
(4) | (自 C++23 起) |
template< class G > constexpr expected& operator=( std::unexpected<G>&& e ); |
(5) | (自 C++23 起) |
void 局部特化 |
||
constexpr expected& operator=( const expected& other ); |
(6) | (自 C++23 起) |
constexpr expected& operator=( expected&& other ) noexcept(/* see below */); |
(7) | (自 C++23 起) |
template< class G > constexpr expected& operator=( const std::unexpected<G>& e ); |
(8) | (自 C++23 起) |
template< class G > constexpr expected& operator=( std::unexpected<G>&& e ); |
(9) | (自 C++23 起) |
辅助函数模板 |
||
template< class T, class U, class... Args > constexpr void reinit-expected( T& newval, U& oldval, Args&&... args ) |
(10) | (自 C++23 起) (仅用于说明*) |
为现有的 expected
对象分配一个新值。
内容 |
[编辑] 参数
other | - | 另一个 expected 对象,其包含的值要赋值 |
v | - | 要分配给包含的值的值 |
e | - | std::unexpected 对象,其包含的值要赋值 |
newval | - | 要构造的包含的值 |
oldval | - | 要销毁的包含的值 |
args | - | 用作 newval 初始化程序的参数 |
[编辑] 效果
[编辑] 主模板赋值运算符
1,2) 将 other 的状态分配给 *this。
如果
has_value()
和 rhs.has_value() 的值不同(即 *this 和 other 之一包含预期值 val
,而另一个包含意外值 unex
),则调用仅用于说明的函数模板 reinit-expected
来安全地更新状态。1) 包含的值按如下方式分配
值 ofhas_value() |
值 of other.has_value() | |
---|---|---|
true | false | |
true | val = *other;
|
reinit-expected (unex , val , other.error());
|
false | reinit-expected (val , unex , *other);
|
unex = other.error();
|
2) 包含的值按如下方式分配
值 ofhas_value() |
值 of other.has_value() | |
---|---|---|
true | false | |
true | val = std::move(*other);
|
reinit-expected (unex , val , std::move(other.error()));
|
false | reinit-expected (val , unex , std::move(*other));
|
unex = std::move(other.error());
|
然后,如果未抛出异常,则执行
has_val
= other.has_value();.3) 预期值按如下方式分配
值 ofhas_value() |
等价于 |
---|---|
true | val = std::forward<U>(v);
|
false | reinit-expected (val , unex , std::forward<U>(v));has_val = false;
|
4,5) 意外值按如下方式分配
重载 | 值 ofhas_value() |
等价于 |
---|---|---|
(4) | true | reinit-expected (val , unex , std::forward<const G&>(e.error()));has_val = false;
|
false | unex = std::forward<const G&>(e.error());
| |
(5) | true | reinit-expected (val , unex , std::forward<G>(e.error()));has_val = false;
|
false | unex = std::forward<G>(e.error());
|
[edit] void 部分特化赋值运算符
6) 意外值按如下方式分配或销毁
值 ofhas_value() |
值 of other.has_value() | |
---|---|---|
true | false | |
true | (无影响) | std::construct_at (std::addressof(unex ), rhs.unex );has_val = false;
|
false | std::destroy_at(std::addressof(unex ));has_val = true;
|
unex = other.error();
|
7) 意外值按如下方式分配或销毁
值 ofhas_value() |
值 of other.has_value() | |
---|---|---|
true | false | |
true | (无影响) | std::construct_at (std::addressof(unex ), std::move(rhs.unex ));has_val = false;
|
false | std::destroy_at(std::addressof(unex ));has_val = true;
|
unex = std::move(other.error());
|
8,9) 意外值按如下方式分配
重载 | 值 ofhas_value() |
等价于 |
---|---|---|
(8) | true | std::construct_at(std::addressof(unex ), std::forward<const G&>(e.error()));has_val = false;
|
false | unex = std::forward<const G&>(e.error());
| |
(9) | true | std::construct_at(std::addressof(unex ), std::forward<G>(e.error()));has_val = false;
|
false | unex = std::forward<G>(e.error());
|
[edit] 辅助函数模板
仅用于说明的函数模板 reinit-expected
按如下方式“定义”
template<class NewType, class OldType, class... Args> constexpr void reinit-expected(NewType& new_val, OldType& old_val, Args&&... args) { // Case 1: the construction of “new_val” is non-throwing: // “new_val” can be directly constructed after destroying “old_val” if constexpr (std::is_nothrow_constructible_v<NewType, Args...>) { std::destroy_at(std::addressof(old_val)); std::construct_at(std::addressof(new_val), std::forward<Args>(args)...); } // Case 2: the move construction of “new_val” is non-throwing: // constuct a temporary NewType object first // (“old_val” is left intact if an exception is thrown from this construction) else if constexpr (std::is_nothrow_move_constructible_v<NewType>) { NewType temp(std::forward<Args>(args)...); // may throw std::destroy_at(std::addressof(old_val)); std::construct_at(std::addressof(new_val), std::move(temp)); } // Case 3: the construction of “new_val” is potentially-throwing: // a backup of “old_val” is required in order to recover from an exception else { OldType temp(std::move(old_val)); // may throw std::destroy_at(std::addressof(old_val)); try { std::construct_at(std::addressof(new_val), std::forward<Args>(args)...); // may throw } catch (...) { std::construct_at(std::addressof(old_val), std::move(temp)); throw; } } }
当赋值将使 *this 持有备用值(即从预期值到意外值,或从意外值到预期值)时,将调用此函数模板。
在这种情况下,需要在构造新值 newval 之前销毁旧值 oldval 。但是,构造 newval 可能会抛出异常。为了提供 强异常安全保证 ,需要在重新抛出异常之前恢复旧值,以便在处理异常时, *this 将具有有效状态。
[edit] 返回值
1-9) *this
[edit] 约束和补充信息
[edit] 主模板赋值运算符
1) 除非以下所有值都为 true ,否则此重载定义为已删除
2) 只有当以下所有值都为 true 时,此重载才参与重载解析
3) 此重载仅在满足以下所有条件时参与重载解析
- std::is_same_v<expected, std::remove_cvref_t<U>> 为 false.
- std::remove_cvref_t<U> 不是
std::unexpected
的特化。 - 以下所有值为 true
4) 此重载仅在以下所有值为 true 时参与重载解析
- std::is_constructible_v<E, const G&>
- std::is_assignable_v<E&, const G&>
- std::is_nothrow_constructible_v<E, const G&> || std::is_nothrow_move_constructible_v<T> ||
std::is_nothrow_move_constructible_v<E>
5) 此重载仅在以下所有值为 true 时参与重载解析
[edit] void 部分特化赋值运算符
[edit] 异常
2)
noexcept 说明:
noexcept(
std::is_nothrow_move_constructible_v<T> && std::is_nothrow_move_assignable_v<T> &&
7)
noexcept 说明:
noexcept(std::is_nothrow_move_constructible_v<E> && std::is_nothrow_move_assignable_v<E>)
[edit] 示例
本节内容尚未完善 原因:没有示例 |
[edit] 缺陷报告
以下行为变更缺陷报告已追溯应用于先前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 4025 | C++23 | 重载 (7) 定义为删除,如果 E 不可移动构造或不可移动赋值它在这种情况下不参与 |
重载解析 LWG 4025 |
C++23
它在这种情况下不参与 重载解析 |