다음을 통해 공유


set::end

주소 집합에서 마지막 요소 뒤에 위치 하는 반복기를 반환 합니다.

const_iterator end( ) const; 
iterator end( );

반환 값

주소 집합에서 마지막 요소 뒤에 위치 하는 양방향 반복기입니다.집합에서 빈 set::end 이면 set::begin =.

설명

최종 반복기 해당 집합의 끝에 도달 했는지 여부를 테스트 하는 데 사용 됩니다.반환 값 최종 역참조 해야 합니다.

예제

// set_end.cpp
// compile with: /EHsc
#include <set>
#include <iostream>

int main( )
{
   using namespace std;   
   set <int> s1;
   set <int> :: iterator s1_Iter;
   set <int> :: const_iterator s1_cIter;
   
   s1.insert( 1 );
   s1.insert( 2 );
   s1.insert( 3 );

   s1_Iter = s1.end( );
   s1_Iter--;
   cout << "The last element of s1 is " << *s1_Iter << endl;

   s1.erase( s1_Iter );

   // The following 3 lines would err because the iterator is const
   // s1_cIter = s1.end( );
   // s1_cIter--;
   // s1.erase( s1_cIter );

   s1_cIter = s1.end( );
   s1_cIter--;
   cout << "The last element of s1 is now " << *s1_cIter << endl;
}
  

요구 사항

헤더: <set>

네임 스페이스: std

참고 항목

참조

set Class

set::swap, set::begin, 및 set::end

표준 템플릿 라이브러리