insert_iterator::container_type
Typ, który reprezentuje kontener, w którym dokonuje się ogólne wstawiania.
typedef Container container_type;
Uwagi
Typ jest synonimem parametru kontenera.
Przykład
// 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;
}
Wymagania
Nagłówek: <iterator>
Obszar nazw: std