std::list::insert
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. |
iterator insert( iterator pos, const T& value ); iterator insert( const_iterator pos, const T& value ); |
(1) | (avant C++11) (depuis C++11) |
iterator insert( const_iterator pos, T&& value ); |
(2) | (depuis C++11) |
void insert( iterator pos, size_type count, const T& value ); iterator insert( const_iterator pos, size_type count, const T& value ); |
(3) | (avant C++11) (depuis C++11) |
template< class InputIt > void insert( iterator pos, InputIt first, InputIt last); |
(4) | (avant C++11) (depuis C++11) |
iterator insert( const_iterator pos, std::initializer_list<T> ilist ); |
(5) | (depuis C++11) |
Éléments Inserts à la position spécifiée dans le conteneur .
1-2) Original:
Inserts elements to specified position in the 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.
inserts
3) value
avant l'élément pointé par pos
Original:
inserts
value
before the element pointed to by pos
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.
inserts
4) count
copies du value
avant l'élément pointé par pos
Original:
inserts
count
copies of the value
before the element pointed to by pos
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.
éléments inserts de
5) [first, last)
plage avant l'élément pointé par pos
Original:
inserts elements from range
[first, last)
before the element pointed to by pos
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.
éléments inserts de liste d'initialisation
ilist
.Original:
inserts elements from initializer list
ilist
.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.
No iterators or references are invalidated.
Sommaire |
[modifier] Paramètres
pos | - | élément avant lequel le contenu sera inséré
Original: element before which the content will be inserted The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
value | - | élément de valeur à insérer
Original: element value to insert 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 d'éléments à insérer, ne peut pas être itérateurs dans le récipient pour lequel insert est appelée
Original: the range of elements to insert, can't be iterators into container for which insert is called The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
ilist | - | initialiseur liste d'insérer les valeurs
Original: initializer list to insert the values from 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] Retourne la valeur
1-2)itérateur pointant sur le
3) value
inséréOriginal:
iterator pointing to the inserted
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.
itérateur pointant sur le premier élément inséré, ou si
4) pos
count==0 .Original:
iterator pointing to the first element inserted, or
pos
if count==0.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.
itérateur pointant sur le premier élément inséré, ou si
5) pos
first==last .Original:
iterator pointing to the first element inserted, or
pos
if 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.
itérateur pointant sur le premier élément inséré, ou si
pos
ilist
est vide .Original:
iterator pointing to the first element inserted, or
pos
if ilist
is empty.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.
[modifier] Complexité
1-2) Constant.
3) Linear in count
4) Linear in std::distance(first, last)
5) Linear in ilist.size()
[modifier] Voir aussi
(C++11) |
construit des éléments en mémoire (fonction membre publique) |
insère des éléments au début (fonction membre publique) | |
ajoute des éléments à la fin Original: adds elements to the end The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction membre publique) |