다음을 통해 공유


insert_iterator::reference

연결된 컨테이너에서 제어 되는 시퀀스에 있는 요소에 대 한 참조를 제공 하는 형식입니다.

typedef typename Container::reference reference;

설명

형식 참조는 연결된 컨테이너에서 제어 되는 시퀀스의 요소를 설명 합니다.

예제

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

int main( )
{
   using namespace std;

   list<int> L;
   insert_iterator<list<int> > iivIter( L , L.begin ( ) );
   *iivIter = 10;
   *iivIter = 20;
   *iivIter = 30;

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

   insert_iterator<list<int> >::reference 
        RefFirst = *(L.begin ( ));
   cout << "The first element in the list L is: " 
        << RefFirst << "." << endl;
}
  
  

요구 사항

헤더: <iterator>

네임 스페이스: std

참고 항목

참조

insert_iterator Class

표준 템플릿 라이브러리