次の方法で共有


basic_string::swap

2 文字列の内容を交換します。

void swap(
    basic_string<CharType, Traits, Allocator>& _Str
);

パラメーター

  • _Str
    要素が対象文字列の要素と交換される元の文字列。

解説

入れ替えられる文字列に同じアロケーターのオブジェクトが存在する場合、swap のメンバー関数:

  • 定数時間で発生します。

  • 例外はスローされません。

  • 2 番目の文字列の要素を示すポインター、参照、または反復子を無効にしません。

それ以外の場合、2 つの被制御シーケンス内の要素数に比例した回数、要素の割り当てとコンストラクター呼び出しが実行されます。

使用例

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

int main( ) 
{
   using namespace std;

   // Declaring an objects of type basic_string<char>
   string s1 ( "Tweedledee" );
   string s2 ( "Tweedledum" );
   cout << "Before swapping string s1 and s2:" << endl;
   cout << " The basic_string s1 = " << s1 << "." << endl;
   cout << " The basic_string s2 = " << s2 << "." << endl;

   s1.swap ( s2 );
   cout << "After swapping string s1 and s2:" << endl;
   cout << " The basic_string s1 = " << s1 << "." << endl;
   cout << " The basic_string s2 = " << s2 << "." << endl;
}
  
  
  
  

必要条件

ヘッダー: <string>

名前空間: std

参照

関連項目

basic_string Class