front_insert_iterator::operator*
Dereferenzia l'iteratore di inserimento che restituisce l'elemento destinato a.
front_insert_iterator<Container>& operator*( );
Valore restituito
La funzione membro restituisce il valore dell'elemento indirizzato.
Note
Utilizzati per implementare l'espressione di output *Iter = valoreiteratori.Se Iter è un iteratore destinato a un elemento di una sequenza, quindi *Iter = valore che sostituisce l'elemento con valore e non modifica il numero complessivo di elementi nella sequenza.
Esempio
// front_insert_iterator_deref.cpp
// compile with: /EHsc
#include <iterator>
#include <list>
#include <iostream>
int main( )
{
using namespace std;
int i;
list <int>::iterator L_Iter;
list<int> L;
for ( i = -1 ; i < 9 ; ++i )
{
L.push_back ( 2 * i );
}
cout << "The list L is:\n ( ";
for ( L_Iter = L.begin( ) ; L_Iter != L.end( ); L_Iter++)
cout << *L_Iter << " ";
cout << ")." << endl;
front_insert_iterator< list < int> > Iter(L);
*Iter = 20;
// Alternatively, you may use
front_inserter ( L ) = 30;
cout << "After the front insertions, the list L is:\n ( ";
for ( L_Iter = L.begin( ) ; L_Iter != L.end( ); L_Iter++)
cout << *L_Iter << " ";
cout << ")." << endl;
}
Requisiti
intestazione: <iterator>
Spazio dei nomi: deviazione standard