다음을 통해 공유


list::const_reference

에 대 한 참조를 제공 하는 형식에 const 읽기 및 수행 목록의 저장 요소 const 작업.

typedef typename Allocator::const_reference const_reference;

설명

형식 const_reference 요소의 값을 수정 하는 데 사용할 수 없습니다.

예제

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

int main( ) 
{
   using namespace std;
   list <int> c1;
   
   c1.push_back( 10 );
   c1.push_back( 20 );

   const list <int> c2 = c1;
   const int &i = c2.front( );
   const int &j = c2.back( );
   cout << "The first element is " << i << endl;
   cout << "The second element is " << j << endl;
   
   // The following line would cause an error because c2 is const
   // c2.push_back( 30 );
}
  

요구 사항

헤더: <list>

네임 스페이스: std

참고 항목

참조

list Class

표준 템플릿 라이브러리