public member function
<map>
std::map::operator= copy (1)map& operator= (const map& x);copy (1)
map& operator= (const map& x);move (2)
map& operator= (map&& x);initializer list (3)
map& operator= (initializer_list<value_type> il);
Copy container content
Assigns new contents to the container, replacing its current content.Copies all the elements from
xinto the container, changing its
sizeaccordingly.
The container preserves its current allocator, which is used to allocate additional storage if needed.
The
copy assignment(1) copies all the elements from
xinto the container (with
xpreserving its contents).
The move assignment (2) moves the elements of x into the container (x is left in an unspecified but valid state).
The initializer list assignment (3) copies the elements of il into the container.
The new container size is the same as the size of x (or il) before the call.
The container preserves its current allocator, except if the allocator traits indicate x's allocator should propagate. This allocator is used (through its traits) to allocate or deallocate if there are changes in storage requirements, and to construct or destroy elements, if needed.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// assignment operator with maps
#include <iostream>
#include <map>
int main ()
{
std::map<char,int> first;
std::map<char,int> second;
first['x']=8;
first['y']=16;
first['z']=32;
second=first; // second now contains 3 ints
first=std::map<char,int>(); // and first is now empty
std::cout << "Size of first: " << first.size() << '\n';
std::cout << "Size of second: " << second.size() << '\n';
return 0;
}
Output:
Size of first: 0 Size of second: 3
In the move assignment, iterators, pointers and references referring to elements in x are also invalidated.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4