다음을 통해 공유


basic_string::end

주소 문자열의 마지막 요소 뒤에 위치 하는 반복기를 반환 합니다.

const_iterator end( ) const;
iterator end( );

반환 값

주소 문자열의 마지막 요소 뒤에 위치 하는 임의 액세스 반복기를 반환 합니다.

설명

최종 반복기 해당 문자열의 끝에 도달 했는지 여부를 테스트할 때 주로 사용 됩니다.반환 값 최종 역참조 해야 합니다.

경우 반환 값을 배정은 const_iterator, 문자열 개체를 수정할 수 없습니다.경우 반환 값의 최종 할당 되는 반복기, 문자열 개체를 수정할 수 있습니다.

예제

// basic_string_end.cpp
// compile with: /EHsc
#include <string>
#include <iostream>

int main( ) 
{
   using namespace std;
   string str1 ( "No way out." ), str2;
   basic_string <char>::iterator str_Iter, str1_Iter, str2_Iter;
   basic_string <char>::const_iterator str1_cIter;

   str1_Iter = str1.end ( );
   str1_Iter--;
   str1_Iter--;
   cout << "The last character-letter of the string str1 is: " << *str1_Iter << endl;
   cout << "The full orginal string str1 is: " << str1 << endl;

   // end used to test when an iterator has reached the end of its string
   cout << "The string is now: ";
   for ( str_Iter = str1.begin( ); str_Iter != str1.end( ); str_Iter++ )
      cout << *str_Iter;
   cout << endl;

   // The dereferenced iterator can be used to modify a character
    *str1_Iter = 'T';
   cout << "The last character-letter of the modified str1 is now: "
        << *str1_Iter << endl;
   cout << "The modified string str1 is now: " << str1 << endl;

   // The following line would be an error because iterator is const
   // *str1_cIter = 'T';

   // For an empty string, end is equivalent to begin
   if ( str2.begin( ) == str2.end ( ) )
      cout << "The string str2 is empty." << endl;
   else
      cout << "The stringstr2  is not empty." << endl;
}
  
  
  
  

요구 사항

헤더: <string>

네임 스페이스: std

참고 항목

참조

basic_string Class