다음을 통해 공유


list::cbegin

주소 목록에서 첫 번째 요소는 const 반복기를 반환 합니다.

const_iterator cbegin( ) const;

반환 값

주소 지정을 첫 번째 요소에서 상수 양방향 반복기는 list Class 또는 이후 빈 위치 list.

설명

반환 값의 cbegin, 요소에는 list 개체를 수정할 수 없습니다.

예제

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

int main( ) 
{
   using namespace std;
   list <int> c1;
   list <int>::const_iterator c1_cIter;
   
   c1.push_back( 1 );
   c1.push_back( 2 );

   c1_cIter = c1.cbegin( );
   cout << "The first element of c1 is " << *c1_cIter << endl;
}

Output

The first element of c1 is 1

요구 사항

헤더: <list>

네임 스페이스: std

참고 항목

참조

list Class

표준 템플릿 라이브러리