std::experimental::any::operator=
来自 cppreference.com
< cpp | experimental | any
any& operator=( const any& rhs ); |
(1) | (库基础 TS) |
any& operator=( any&& rhs ) noexcept; |
(2) | (库基础 TS) |
template< typename ValueType > any& operator=( ValueType&& rhs ); |
(3) | (库基础 TS) |
将内容分配给包含的值。
1) 通过复制 rhs 的状态来分配,如同使用 any(rhs).swap(*this)。
2) 通过移动 rhs 的状态来分配,如同使用 any(std::move(rhs)).swap(*this)。分配后,rhs 处于有效但未指定的狀態。
3) 分配 rhs 的类型和值,如同使用 any(std::forward<ValueType>(rhs)).swap(*this)。如果 std::is_copy_constructible<std::decay_t<ValueType>>::value 为 false,程序格式错误。只有当 std::decay_t<ValueType> 与 any 不是同一类型时,此重载才会参与重载解析。
内容 |
[编辑] 模板参数
ValueType | - | 包含的值类型 |
类型要求 | ||
-std::decay_t<ValueType> 必须满足 CopyConstructible 的要求。 |
[编辑] 参数
rhs | - | 要分配其包含值的物件 |
[编辑] 返回值
*this
[编辑] 异常
1,3) 抛出 bad_alloc 或包含类型构造函数抛出的任何异常。如果抛出异常,则不会产生任何效果(强异常保证)。
[编辑] 另请参阅
构造一个 any 物件(公共成员函数) |