C++ Tutorial/string/string swap

Материал из C\C++ эксперт
Версия от 10:30, 25 мая 2010; Admin (обсуждение | вклад) (1 версия: Импорт контента...)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Using string.swap function to swap two strings

#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

Using the swap function to swap two strings

#include <iostream>
#include <string>
using namespace std;
int main()
{
   string first( "one" ), second( "two" );
   cout << "Before swap:\n first: " << first << "\nsecond: " << second;
   first.swap( second );
   cout << "\n\nAfter swap:\n first: " << first << "\nsecond: " << second << endl;
    
   return 0;
}