list::cend
주소 목록에 있는 마지막 요소 뒤에 위치 하는 const 반복기를 반환 합니다.
const_iterator cend( ) const;
반환 값
마지막 요소 뒤에 위치 주소 상수 양방향 반복기는 list Class.경우는 list 다음 비어 list::cend == list::begin.
설명
cend반복기의 끝에 도달 했는지 여부를 테스트 하려면 사용 되는 list.
예제
// list_cend.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( 10 );
c1.push_back( 20 );
c1.push_back( 30 );
c1_cIter = c1.cend( );
c1_cIter--;
cout << "The last integer of c1 is " << *c1_cIter << endl;
}
요구 사항
헤더: <list>
네임 스페이스: std