... initialize strings first and second. Each string is then output. Line 14 uses string member function swap to swap the values of first and second. The two strings are printed again to confirm that they were indeed swapped. The string member function swap is useful for implementing programs that sort strings.

Fig. 21.4 Using the swap function to swap two strings.

Alternate View

 1  // Fig. 21.4: Fig21_04.cpp
 2  // Using the swap function to swap two strings.
 3  #include <iostream>
 4  #include <string>
 5  using namespace std;
 6
 7  int main() {
 8     string first{"one"};
 9     string second{"two"};
10
11     // output strings
12     cout << "Before swap:\n first: " << first ...

Get C++ How to Program, 10/e now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.