std::list::list
Aus 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. |
<metanoindex/>
<tbody> </tbody> explicit list( const Allocator& alloc = Allocator() ); |
(1) | |
explicit list( size_type count, {{#pad:|4}} const T& value = T(), {{#pad:|4}} const Allocator& alloc = Allocator()); list( size_type count, {{#pad:|4}} const T& value, {{#pad:|4}} const Allocator& alloc = Allocator()); |
(2) | (bis C + +11) (seit C++11) |
explicit list( size_type count ); |
(3) | (seit C++11) |
template< class InputIt > list( InputIt first, InputIt last, {{#pad:|4}} const Allocator& alloc = Allocator() ); |
(4) | |
list( const list& other ); |
(5) | |
list( const list& other, const Allocator& alloc ); |
(5) | (seit C++11) |
list( list&& other ) |
(6) | (seit C++11) |
list( list&& other, const Allocator& alloc ); |
(6) | (seit C++11) |
list( std::initializer_list<T> init, {{#pad:|4}} const Allocator& alloc = Allocator() ); |
(7) | (seit C++11) |
Konstruiert neuen Container aus einer Vielzahl von Datenquellen und gegebenenfalls unter Verwendung Anwender geliefert allocator
alloc .Original:
Constructs new container from a variety of data sources and optionally using user supplied allocator
alloc.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)
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.
You can help to correct and verify the translation. Click here for instructions.
2)
Konstruiert den Behälter mit
count Kopien von Elementen mit dem Wert value .Original:
Constructs the container with
count copies of elements with value value.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)
Konstruiert den Behälter mit
count Wert initialisiert (Standard gebaut, für Klassen) Instanzen T. Keine Kopien gemacht werden .Original:
Constructs the container with
count value-initialized (default constructed, for classes) instances of T. No copies are made.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)
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.
You can help to correct and verify the translation. Click here for instructions.
5)
Kopieren 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.
You can help to correct and verify the translation. Click here for instructions.
6)
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.
You can help to correct and verify the translation. Click here for instructions.
7)
Konstruiert 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.
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. |
| count | - | die Größe des Behälters
Original: the size of the container The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| value | - | der Wert auf Elemente des Behälters mit initialisieren
Original: the value to initialize 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. |
| 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)
Constant
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.
2-3)
Linear in
countOriginal:
Linear in
countThe 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)
Linear im Abstand zwischen
first und 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.
5)
Linear in der Größe von
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.
6)
Constant. 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.
You can help to correct and verify the translation. Click here for instructions.
7)
Linear in der Größe von
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.
Beispiel
#include <list>
#include <string>
int main()
{
// c++11 initializer list syntax:
std::list<std::string> words1 {"the", "frogurt", "is", "also", "cursed"};
// words2 == words1
std::list<std::string> words2(words1.begin(), words1.end());
// words3 == words1
std::list<std::string> words3(words1);
// words4 is {"Mo", "Mo", "Mo", "Mo", "Mo"}
std::list<std::string> words4(5, "Mo");
return 0;
}
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) | |
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) | |