다음을 통해 공유


basic_string::begin

문자열에서 첫 번째 요소의 주소를 지정 하는 반복기를 반환 합니다.

const_iterator begin( ) const;
iterator begin( );

반환 값

시퀀스 또는 빈 시퀀스의 끝 바로 뒤의 첫 번째 요소를 해결 하는 임의 액세스 반복기입니다.

주석

경우 반환 값의 시작 배정은 const_iterator, 문자열 개체를 수정할 수 없습니다.경우 반환 값의 시작 배정은 반복기, 문자열 개체를 수정할 수 있습니다.

예제

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

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

   str1_Iter = str1.begin ( );
   cout << "The first character of the string str1 is: " 
        << *str1_Iter << endl;
   cout << "The full original string str1 is: " << str1 << endl;

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

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

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

Output

The first character of the string str1 is: N
The full original string str1 is: No way out.
The first character of the modified str1 is now: G
The full modified string str1 is now: Go way out.
The string str2 is empty.

요구 사항

헤더: <string>

네임 스페이스: std

참고 항목

참조

basic_string Class