次の方法で共有


basic_string::end

文字列の最後の要素の次の場所を指定する反復子を返します。

const_iterator end( ) const;
iterator end( );

戻り値

文字列の最後の要素の次の場所を示すランダム アクセス反復子を返します。

解説

end は反復子を文字列の末尾に到達したかどうかをテストするためによく使用されます。end によって返される値は逆参照することはできません。

end の戻り値が const_iteratorに割り当てられている場合、文字列オブジェクトは変更できません。end の戻り値が **[反復子]**に割り当てられている場合、文字列オブジェクトは変更できます。

使用例

// 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