unordered_map& operator=( const unordered_map& other ); | (1) | (since C++11) |
(2) | ||
unordered_map& operator=( unordered_map&& other ); | (since C++11) (until C++17) | |
unordered_map& operator=( unordered_map&& other ) noexcept(/* see below */); | (since C++17) | |
unordered_map& operator=( std::initializer_list<value_type> ilist ); | (3) | (since C++11) |
Replaces the contents of the container.
other
.std::allocator_traits<allocator_type>::propagate_on_container_copy_assignment::value
is true
, the allocator of *this
is replaced by a copy of other
. If the allocator of *this
after assignment would compare unequal to its old value, the old allocator is used to deallocate the memory, then the new allocator is used to allocate it before copying the elements. Otherwise, the memory owned by *this
may be reused when possible. In any case, the elements originally belonging to *this
may be either destroyed or replaced by element-wise copy-assignment.other
using move semantics (i.e. the data in other
is moved from other
into this container). other
is in a valid but unspecified state afterwards.std::allocator_traits<allocator_type>::propagate_on_container_move_assignment::value
is true
, the allocator of *this
is replaced by a copy of that of other
. If it is false
and the allocators of *this
and other
do not compare equal, *this
cannot take ownership of the memory owned by other
and must move-assign each element individually, allocating additional memory using its own allocator as needed. In any case, all elements originally belonging to *this
are either destroyed or replaced by element-wise move-assignment.ilist
.other | - | another container to use as data source |
ilist | - | initializer list to use as data source |
*this
.
*this
and other
.*this
unless the allocators do not compare equal and do not propagate, in which case linear in the size of *this
and other
.*this
and ilist
. May throw implementation-defined exceptions. | (until C++17) |
1,3) May throw implementation-defined exceptions. 2) noexcept specification: noexcept(std::allocator_traits<Allocator>::is_always_equal::value | (since C++17) |
After container move assignment (overload (2)), unless element-wise move assignment is forced by incompatible allocators, references, pointers, and iterators (other than the end iterator) to other
remain valid, but refer to elements that are now in *this
. The current standard makes this guarantee via the blanket statement in [container.rev.reqmts]/17, and a more direct guarantee is under consideration via LWG 2321.
The following code uses operator=
to assign one std::unordered_map
to another:
#include <unordered_map> #include <iterator> #include <iostream> #include <utility> #include <initializer_list> 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_map<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); }
Possible output:
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} }
(C++11) | constructs the unordered_map (public member function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/container/unordered_map/operator%3D