Udostępnij za pośrednictwem


front_inserter

Tworzy iterację, która może wstawić elementy z przodu określonego kontenera.

template<class Container> 
   front_insert_iterator<Container> front_inserter( 
      Container& _Cont 
   );

Parametry

  • _Cont
    Obiekt kontenera, którego przednie jest posiadanie element wstawiony.

Wartość zwracana

A front_insert_iterator skojarzonego z obiektem kontenera _Cont.

Uwagi

Element członkowski funkcja front_insert_iterator front_insert_iterator klasy mogą również być użyte.

W ramach standardowej biblioteki szablonów, argument musi odwoływać się do jednego z dwóch sekwencji kontenerów, które mają funkcji członka push_back: deque klasy lub listy klasy.

Przykład

// iterator_front_inserter.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 ( i );
   }

   cout << "The list L is:\n ( ";
   for ( L_Iter = L.begin( ) ; L_Iter != L.end( ); L_Iter++)
      cout << *L_Iter << " ";
   cout << ")." << endl;

   // Using the template function to insert an element
   front_insert_iterator< list < int> > Iter(L);
   *Iter = 100;

   // Alternatively, you may use the front_insert member function
   front_inserter ( L ) = 200;

   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;
}
  

Wymagania

Nagłówek: <iterator>

Przestrzeń nazw: std

Zobacz też

Informacje

Standardowa biblioteka szablonów