std::unordered_multimap<Key,T,Hash,KeyEqual,Allocator>::operator=
来自 cppreference.com
unordered_multimap& operator=( const unordered_multimap& other ); |
(1) | (自 C++11 起) |
(2) | ||
unordered_multimap& operator=( unordered_multimap&& other ); |
(自 C++11 起) (直到 C++17) |
|
unordered_multimap& operator=( unordered_multimap&& other ) noexcept(/* 见下文 */); |
(自 C++17 起) | |
unordered_multimap& operator=( std::initializer_list<value_type> ilist ); |
(3) | (自 C++11 起) |
替换容器的内容。
1) 复制赋值运算符。用 other 的内容副本替换内容。
如果 std::allocator_traits<allocator_type>::propagate_on_container_copy_assignment::value 为 true,则 *this 的分配器将被 other 的副本替换。如果赋值后 *this 的分配器与它的旧值不匹配,则旧分配器将用于释放内存,然后新分配器将用于分配内存,然后再复制元素。否则,如果可能,*this 拥有的内存可能会被重用。无论哪种情况,最初属于 *this 的元素可能会被销毁或被逐元素复制赋值所替换。
2) 移动赋值运算符。用 other 的内容替换内容,使用移动语义(即,other 中的数据从 other 移动到此容器中)。other 之后将处于有效但未指定的状态。
如果 std::allocator_traits<allocator_type>::propagate_on_container_move_assignment::value 为 true,则 *this 的分配器将被 other 的副本替换。如果它为 false 并且 *this 和 other 的分配器不相等,则 *this 不能获取 other 拥有的内存的所有权,并且必须逐元素移动赋值,根据需要使用它自己的分配器分配额外的内存。无论哪种情况,最初属于 *this 的所有元素都会被销毁或被逐元素移动赋值所替换。
3) 用初始化列表 ilist 所识别的内容替换内容。
内容 |
[编辑] 参数
other | - | 另一个用作数据源的容器 |
ilist | - | 用作数据源的初始化列表 |
[编辑] 返回值
*this
[编辑] 复杂度
1) *this 和 other 的大小的线性时间。
2) *this 的大小的线性时间,除非分配器不相等并且不传播,在这种情况下为 *this 和 other 的大小的线性时间。
3) *this 和 ilist 的大小的线性时间。
[编辑] 异常
1-3) 可能会抛出实现定义的异常。 |
(直到 C++17) |
1,3) 可能会抛出实现定义的异常。
2) noexcept 规范:
noexcept(std::allocator_traits<Allocator>::is_always_equal::value && std::is_nothrow_move_assignable<Hash>::value |
(自 C++17 起) |
[编辑] 备注
在容器移动赋值(重载 (2))之后,除非不兼容的分配器强制逐元素移动赋值,否则对 other
的引用、指针和迭代器(除了结束迭代器)仍然有效,但会引用现在位于 *this 中的元素。当前标准通过 [container.reqmts]/67 中的笼统陈述来保证这一点,并且通过 LWG 问题 2321 正在考虑提供更直接的保证。
[编辑] 示例
以下代码使用 operator= 将一个 std::unordered_multimap 赋值给另一个
运行此代码
#include <initializer_list> #include <iostream> #include <iterator> #include <unordered_map> #include <utility> void print(auto const comment, auto const& container) { auto size = std::size(container); std::cout << comment << "{ "; for (auto const& [key, value] : container) std::cout << '{' << key << ',' << value << (--size ? "}, " : "} "); std::cout << "}\n"; } int main() { std::unordered_multimap<int, int> x{{1,1}, {2,2}, {3,3}}, y, z; const auto w = {std::pair<const int, int>{4,4}, {5,5}, {6,6}, {7,7}}; std::cout << "Initially:\n"; print("x = ", x); print("y = ", y); print("z = ", z); std::cout << "Copy assignment copies data from x to y:\n"; y = x; print("x = ", x); print("y = ", y); std::cout << "Move assignment moves data from x to z, modifying both x and z:\n"; z = std::move(x); print("x = ", x); print("z = ", z); std::cout << "Assignment of initializer_list w to z:\n"; z = w; print("w = ", w); print("z = ", z); }
可能的输出
Initially: x = { {3,3}, {2,2}, {1,1} } y = { } z = { } Copy assignment copies data from x to y: x = { {3,3}, {2,2}, {1,1} } y = { {3,3}, {2,2}, {1,1} } Move assignment moves data from x to z, modifying both x and z: x = { } z = { {3,3}, {2,2}, {1,1} } Assignment of initializer_list w to z: w = { {4,4}, {5,5}, {6,6}, {7,7} } z = { {7,7}, {6,6}, {5,5}, {4,4} }
[编辑] 另请参阅
构造 unordered_multimap (公有成员函数) |