std::map::map
De cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| explicit map( const Compare& comp = Compare(), const Allocator& alloc = Allocator() ); |
(1) | |
| explicit map( const Allocator& alloc ); |
(1) | (depuis C++11) |
| template< class InputIt > map( InputIt first, InputIt last, |
(2) | |
| map( const map& other ); |
(3) | |
| map( const map& other, const Allocator& alloc ); |
(3) | (depuis C++11) |
| map( map&& other ); |
(4) | (depuis C++11) |
| map( map&& other, const Allocator& alloc ); |
(4) | (depuis C++11) |
| map( std::initializer_list<value_type> init, const Compare& comp = Compare(), |
(5) | (depuis C++11) |
Construit nouveau conteneur d'une variété de sources de données et éventuellement à l'aide
1) alloc allocateur fournie par l'utilisateur ou une fonction de comparaison comp .Original:
Constructs new container from a variety of data sources and optionally using user supplied allocator
alloc or comparison function comp.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
constructeur par défaut. Construit récipient vide .
2) Original:
default constructor. Constructs empty container.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
construit le récipient avec le contenu de la gamme
3) [first, last) .Original:
constructs the container with the contents of the range
[first, last).The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
copier constructeur. Construit le récipient avec la copie du contenu de
4) other. Si alloc n'est pas fourni, l'allocateur est obtenue en appelant std::allocator_traits<allocator_type>::select_on_copy_construction(other) .Original:
copy constructor. Constructs the container with the copy of the contents of
other. If alloc is not provided, allocator is obtained by calling std::allocator_traits<allocator_type>::select_on_copy_construction(other).The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
déplacer constructeur. Construit le récipient avec le contenu de
5) other utilisant une sémantique de déplacement. Si alloc n'est pas disponible, l'allocateur est obtenu par déplacement de la construction de l'allocateur appartenant à other .Original:
move constructor. Constructs the container with the contents of
other using move semantics. If alloc is not provided, allocator is obtained by move-construction from the allocator belonging to other.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
construit le récipient avec le contenu de la liste d'initialisation
init . Original:
constructs the container with the contents of the initializer list
init. The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Sommaire |
[modifier] Paramètres
| alloc | - | allocateur à utiliser pour toutes les allocations de mémoire de ce conteneur
Original: allocator to use for all memory allocations of this container The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| comp | - | fonction de comparaison à utiliser pour toutes les comparaisons de clés
Original: comparison function to use for all comparisons of keys The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| first, last | - | la plage à copier des éléments à partir
Original: the range to copy the elements from The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| other | - | un autre récipient pour être utilisé comme source pour initialiser les éléments du conteneur avec
Original: another container to be used as source to initialize the elements of the container with The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| init | - | initialiseur pour initialiser la liste des éléments du récipient avec
Original: initializer list to initialize the elements of the container with The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| Type requirements | ||
-InputIt must meet the requirements of InputIterator.
| ||
[modifier] Complexité
| This section is incomplete |
constant
2) Original:
constant
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
linéaire de la distance entre
3) first et lastOriginal:
linear in distance between
first and lastThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
linéaire de la taille des
4) otherOriginal:
linear in size of
otherThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
constant. Si
5) alloc est donné et alloc != other.get_allocator(), alors linéaire .Original:
constant. If
alloc is given and alloc != other.get_allocator(), then linear.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
linéaire de la taille des
initOriginal:
linear in size of
initThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[modifier] Exemple
| This section is incomplete Reason: no example |
[modifier] Voir aussi
| Attribue les valeurs dans le conteneur (fonction membre publique) | |

