다음을 통해 공유


basic_string::rbegin

반전된 문자열의 첫 번째 요소에 반복기를 반환합니다.

const_reverse_iterator rbegin( ) const;
reverse_iterator rbegin( );

반환 값

주소는 해당 내용이 되돌릴 수 없는 문자열의 마지막 요소 수 거꾸로 된 문자열에서 첫 번째 요소는 임의 액세스 반복기를 반환 합니다.

설명

rbegin거꾸로 된 문자열을 사용으로 시작 문자열이 사용 됩니다.

경우 반환 값의 rbegin 배정은 const_reverse_iterator, 문자열 개체를 수정할 수 없습니다.경우 반환 값의 rbegin 배정은 reverse_iterator, 문자열 개체를 수정할 수 있습니다.

rbegin뒤로 반복 문자열을 초기화할 수 사용할 수 있습니다.

예제

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

int main( )
{
   using namespace std;
   string str1 ( "Able was I ere I saw Elba" ), str2;
   basic_string <char>::reverse_iterator str_rIter, str1_rIter, str2_rIter;
   basic_string <char>::const_reverse_iterator str1_rcIter;

   str1_rIter = str1.rbegin ( );
   // str1_rIter--;
   cout << "The first character-letter of the reversed string str1 is: "
        << *str1_rIter << endl;
   cout << "The full reversed string str1 is:\n ";
   for ( str_rIter = str1.rbegin( ); str_rIter != str1.rend( ); str_rIter++ )
      cout << *str_rIter;
   cout << endl;

   // The dereferenced iterator can be used to modify a character
    *str1_rIter = 'A';
   cout << "The first character-letter of the modified str1 is now: "
        << *str1_rIter << endl;
   cout << "The full modified reversed string str1 is now:\n ";
   for ( str_rIter = str1.rbegin( ); str_rIter != str1.rend( ); str_rIter++ )
      cout << *str_rIter;
   cout << endl;

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

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

요구 사항

헤더: <string>

네임 스페이스: std

참고 항목

참조

basic_string Class