Espaces de noms
Variantes
Actions

std::back_insert_iterator

De cppreference.com
< cpp‎ | iterator

 
 
Bibliothèque Iterator
Primitives Iterator
Original:
Iterator primitives
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
iterator_traits
input_iterator_tag
output_iterator_tag
forward_iterator_tag
bidirectional_iterator_tag
random_access_iterator_tag
iterator
Adaptateurs Iterator
Original:
Iterator adaptors
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
reverse_iterator
Itérateurs de flux
Original:
Stream iterators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
istream_iterator
ostream_iterator
istreambuf_iterator
ostreambuf_iterator
Opérations Iterator
Original:
Iterator operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
advance
distance
prev (C++11)
next (C++11)
Gamme d'accès
Original:
Range access
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
begin (C++11)
end (C++11)
 
std::back_insert_iterator
Les fonctions membres
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
back_insert_iterator::back_insert_iterator
back_insert_iterator::operator=
back_insert_iterator::operator*
back_insert_iterator::operator++
back_insert_iterator::operator++(int)
 
Déclaré dans l'en-tête <iterator>
template<class Container >

class back_insert_iterator :publicstd::iterator<std::output_iterator_tag,

                                                   void,void,void,void>
std::back_insert_iterator est un OutputIterator qui ajoute à un conteneur pour lequel il a été construit, en utilisant la fonction du conteneur push_back() membre lorsque l'itérateur (que ce soit déréférencé ou non) est assigné. L'incrémentation du std::back_insert_iterator est un no-op .
Original:
std::back_insert_iterator is an OutputIterator that appends to a container for which it was constructed, using the container's push_back() member function whenever the iterator (whether dereferenced or not) is assigned to. Incrementing the std::back_insert_iterator is a no-op.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Sommaire

[modifier]Types de membres

Type du membre Définition
container_typeContainer

[modifier]Fonctions membres

Modèle:cpp/iterator/inserter/dsc operator++
construit un nouveau back_insert_iterator
Original:
constructs a new back_insert_iterator
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)[edit]
insère un objet dans le récipient associé
Original:
inserts an object into the associated container
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)[edit]
no-op
(fonction membre publique)[edit]

[modifier]Objets membres

Nom du membre
Original:
Member name
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Definition
container (
protégée
Original:
protected
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
)
un pointeur de Container* type
Original:
a pointer of type Container*
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Inherited from std::iterator

Member types

Type du membre Définition
value_typevoid
difference_typevoid
pointervoid
referencevoid
iterator_categorystd::output_iterator_tag

[modifier]Exemple

#include <iostream>#include <iterator>#include <algorithm>#include <cstdlib>int main(){std::vector<int> v;std::generate_n(std::back_insert_iterator<std::vector<int>>(v), // can be simplified10, [](){returnstd::rand()%10;});// with std::back_inserterfor(int n : v)std::cout<< n <<' ';std::cout<<'\n';}

Résultat :

3 6 7 5 3 5 6 2 9 1

[modifier]Voir aussi

crée un std::back_insert_iterator de type inféré à partir de l'argument
Original:
creates a std::back_insert_iterator of type inferred from the argument
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(fonction générique)[edit]
Adaptateur itérateur pour l'insertion à l'avant d'un conteneur
Original:
iterator adaptor for insertion at the front of a container
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(classe générique)[edit]
Adaptateur itérateur pour l'insertion dans un récipient
Original:
iterator adaptor for insertion into a container
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(classe générique)[edit]
close