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,则 *this 的分配器将被 other 的分配器副本替换。如果赋值后 *this 的分配器与其旧值不一致,则使用旧分配器释放内存,然后使用新分配器分配内存,然后复制条目。否则,如果可能,*this 所拥有的内存可能会被重用。
2) 移动赋值运算符。使用移动语义将 other 的内容替换为 other 的内容(即,other 中的数据从 other 移动到 *this)。other 之后处于有效但未指定的狀態。
如果 std::allocator_traits<allocator_type>::propagate_on_container_move_assignment::value 为 true,则 *this 的分配器将被 other 的分配器副本替换。如果它为 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.reqmts]/67 中的一般性陈述来保证这一点,并且通过 LWG issue 2321 正在考虑更直接的保证。
[编辑] 示例
本节不完整 原因:没有示例 |
[编辑] 另请参阅
创建一个新的 basic_stacktrace (公共成员函数) |