Using string.swap function to swap two strings : string swap « string « C++ Tutorial






#include <iostream>
using std::cout;
using std::endl;

#include <string>
using std::string;

int main()
{
   string first( "one" ); 
   string second( "two" );

   cout << "Before swap:\n first: " << first << "\nsecond: " << second;

   first.swap( second ); // swap strings

   cout << "\n\nAfter swap:\n first: " << first
      << "\nsecond: " << second << endl;
   return 0;
}
Before swap:
 first: one
second: two

After swap:
 first: two
second: one








15.24.string swap
15.24.1.Using string.swap function to swap two strings
15.24.2.Using the swap function to swap two strings