◐ Shell
clean mode source ↗

std::unordered_multimap::unordered_multimap – cppreference.com

Aus cppreference.com

<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) (seit C++11)

explicit unordered_multimap( const Allocator& alloc );

(1) (seit 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) (seit C++11)

unordered_multimap( const unordered_multimap& other );

(3) (seit C++11)

unordered_multimap( const unordered_multimap& other, const Allocator& alloc );

(3) (seit C++11)

unordered_multimap( unordered_multimap&& other );

(4) (seit C++11)

unordered_multimap( unordered_multimap&& other, const Allocator& alloc );

(4) (seit 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) (seit C++11)

Konstruiert neuen Container aus einer Vielzahl von Datenquellen. Verwendet optional Benutzer gelieferten bucket_count als eine minimale Anzahl von Buckets zu schaffen, hash wie die Hash-Funktion, wie die Funktion equal um Schlüssel und alloc als Zuordner vergleiche .

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.

1)

Standardkonstruktor. Konstruiert leeren Behälter .

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.

2)

Konstrukte des Behälters mit dem Inhalt des Bereichs [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.

3)

Copy-Konstruktor. Konstrukte des Behälters mit der Kopie der Inhalte des other. Wenn alloc nicht vorgesehen ist, wird allocator indem std::allocator_traits<allocator_type>::select_on_copy_construction(other) erhalten .

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.

4)

bewegen Konstruktor. Konstrukte des Behälters mit dem Inhalt unter Verwendung other bewegen Semantik. Wenn alloc nicht vorgesehen ist, wird allocator um Zug-Konstruktion aus dem allocator gehörenden other erhalten .

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.

5)

baut den Behälter mit dem Inhalt der Initialisierungsliste 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.

Parameter

alloc -

allocator für alle Speicherzuordnungen dieser Behälter

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 -

minimale Anzahl von Eimern auf die Initialisierung zu verwenden. Wenn er nicht angegeben wird, wird die Implementierung definiert Standardwert verwendet

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.
You can help to correct and verify the translation. Click here for instructions.

hash -

Hash-Funktion zu verwenden

Original:

hash function to use

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

equal -

Vergleich-Funktion für alle wichtigen Vergleiche dieser Behälter

Original:

comparison function to use for all key comparisons 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.

first, last -

der Bereich zum Kopieren der Elemente aus

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 -

ein weiterer Behälter, der als Quelle, um die Elemente des Behälters mit initialisieren verwendet werden

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 -

Initialisiererliste, um die Elemente des Behälters mit initialisieren

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.

Komplexität

1)

konstant

Original:

constant

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

2)

linear in Abstand zwischen first und last

Original:

linear in distance between first and last

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

3)

linear in Größe other

Original:

linear in size of other

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

4)

konstant. Wenn alloc gegeben und alloc != other.get_allocator(), dann linear .

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.

5)

linear in Größe init

Original:

linear in size of init

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Beispiel

Siehe auch

weist Werte auf den Behälter

Original:

assigns values to the container

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(öffentliche Elementfunktion) [edit]