std::unordered_multimap::unordered_multimap
Da cppreference.com.
|
|
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
<metanoindex/>
<tbody> </tbody> explicit unordered_multimap( size_type bucket_count = /*implementation-defined*/, {{#pad:|27}} const Hash& hash = Hash(), {{#pad:|27}} const KeyEqual& equal = KeyEqual(), {{#pad:|27}} const Allocator& alloc = Allocator() ); |
(1) | (dal C++11) |
explicit unordered_multimap( const Allocator& alloc ); |
(1) | (dal C++11) |
template< class InputIt > unordered_multimap( InputIt first, InputIt last, {{#pad:|18}} size_type bucket_count = /*implementation-defined*/, {{#pad:|18}} const Hash& hash = Hash(), {{#pad:|18}} const KeyEqual& equal = KeyEqual(), {{#pad:|18}} const Allocator& alloc = Allocator() ); |
(2) | (dal C++11) |
unordered_multimap( const unordered_multimap& other ); |
(3) | (dal C++11) |
unordered_multimap( const unordered_multimap& other, const Allocator& alloc ); |
(3) | (dal C++11) |
unordered_multimap( unordered_multimap&& other ); |
(4) | (dal C++11) |
unordered_multimap( unordered_multimap&& other, const Allocator& alloc ); |
(4) | (dal C++11) |
unordered_multimap( std::initializer_list<value_type> init, {{#pad:|18}} size_type bucket_count = /*implementation-defined*/, {{#pad:|18}} const Hash& hash = Hash(), {{#pad:|18}} const KeyEqual& equal = KeyEqual(), {{#pad:|18}} const Allocator& alloc = Allocator() ); |
(5) | (dal C++11) |
Costruisce nuovo contenitore da una varietà di fonti di dati. Utilizza facoltativamente fornite dall'utente
bucket_count da un numero minimo di segmenti per creare, hash come la funzione di hash, equal come la funzione per confrontare le chiavi e alloc come allocatore. Original:
Constructs new container from a variety of data sources. Optionally uses user supplied
bucket_count as a minimal number of buckets to create, hash as the hash function, equal as the function to compare keys and alloc as the allocator. 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.
1)
costruttore di default. Costruisce contenitore vuoto.
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.
2)
costruisce il contenitore con il contenuto della
[first, last) gamma.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.
3)
costruttore di copia. Costruisce il contenitore con la copia del contenuto di
other. Se alloc non viene fornito, allocatore viene ottenuto chiamando 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.
4)
spostare costruttore. Costruisce il contenitore con il contenuto di
other con semantica spostamento. Se alloc non viene fornito, si ottiene allocatore di movimento costruzione dal allocatore appartenenti a 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.
5)
costruisce il contenitore con il contenuto della lista di inizializzazione
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.
Parametri
| alloc | - | allocatore da utilizzare per tutte le allocazioni di memoria di questo contenitore
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. |
| bucket_count | - | numero minimo di contenitori da utilizzare per l'inizializzazione. Se non è specificato, l'attuazione definito valore predefinito viene utilizzato Original: minimal number of buckets to use on initialization. If it is not specified, implementation-defined default value is used The text has been machine-translated via Google Translate. |