std::basic_stacktrace<Allocator>::operator=
来自cppreference.com
< cpp | utility | basic stacktrace
basic_stacktrace& operator=( const basic_stacktrace& other ); |
(1) | (C++23 起) |
basic_stacktrace& operator=( basic_stacktrace&& other ) noexcept(/* see below */); |
(2) | (C++23 起) |
替换 basic_stacktrace
的内容。
1) 复制赋值运算符。以
other
的副本替换内容。 若 std::allocator_traits<allocator_type>::propagate_on_container_copy_assignment::value 为 true ,则用
other
的分配器的副本替换 *this 的分配器。若 *this 的分配器在赋值后将与其旧值比较不相等,则用旧分配器解分配内存,然后在复制条目前用新分配器分配内存。否则,在可行时可能复用 *this 所拥有的内存。 2) 移动赋值运算符。用移动语义以
other
的内容替换内容(即从 other
移动 other
中的数据到 *this 中)。之后 other
在合法但未指定的状态。 若 std::allocator_traits<allocator_type>::propagate_on_container_move_assignment::value 为 true ,则用
other
的分配器的副本替换 *this 的分配器。若它为 false 且 *this 与 other
的分配器不比较相等,则 *this 不能接管 other
所拥有的内存的所有权且必须单独地移动赋值每个条目,并用其自身的分配器按需分配额外内存。任何情况下,原属于 *this 的栈踪条目要么被销毁,要么被逐元素赋值替换。
若实现强化异常说明,则在分配失败时 *this 可能被设为空。
参数
other | - | 用作源的另一 basic_stacktrace
|
返回值
*this
复杂度
1) 与
*this
和 other
的大小成线性。2) 与
*this
的大小成线性,除非分配器不比较相等且不传播,该情况下与 *this
和 other
的大小成线性。异常
1) 可能抛出实现定义的异常。
2)
noexcept 说明:
noexcept(std::allocator_traits<Allocator>::propagate_on_container_move_assignment::value
|| std::allocator_traits<Allocator>::is_always_equal::value)
|| std::allocator_traits<Allocator>::is_always_equal::value)
注解
在容器移动赋值(重载 (2) )后,除非不兼容的分配器强制逐元素移动赋值,指向 other
的引用及迭代器(除了尾迭代器)保持合法,但指代现于 *this 中的元素。当前标准由 [container.requirements.general]/12 中的总括陈述作出此保证,而 LWG 2321 正在考虑更严格的保证。
示例
本节未完成 原因:暂无示例 |
参阅
(C++23) |
创建新的 basic_stacktrace (公开成员函数) |