Sdílet prostřednictvím


insert_iterator::container_type

Typ, který představuje kontejner, do kterého má být provedeno Obecné vložení.

typedef Container container_type;

Poznámky

Typ je synonymum pro parametr šablony kontejner.

Příklad

// insert_iterator_container_type.cpp
// compile with: /EHsc
#include <iterator>
#include <list>
#include <iostream>

int main( )
{
   using namespace std;

   list<int> L1;
   insert_iterator<list<int> >::container_type L2 = L1;
   inserter ( L2, L2.end ( ) ) = 20;
   inserter ( L2, L2.end ( ) ) = 10;
   inserter ( L2, L2.begin ( ) ) = 40;

   list <int>::iterator vIter;
   cout << "The list L2 is: ( ";
   for ( vIter = L2.begin ( ) ; vIter != L2.end ( ); vIter++ )
      cout << *vIter << " ";
   cout << ")." << endl;
}
  

Požadavky

Hlavička: <iterátor>

Obor názvů: std

Viz také

Referenční dokumentace

insert_iterator – třída

Standardní knihovna šablon