Descripción
Intercambia el contenido del contenedor por el contenido de str, que es otro objeto de cadena. Las longitudes pueden variar.
Declaración
A continuación se muestra la declaración de std :: string :: swap.
void swap (string& str);
C ++ 11
void swap (string& str);
C ++ 14
void swap (string& str);
Parámetros
str - Es un objeto de cuerda.
Valor devuelto
ninguna
Excepciones
si se lanza una excepción, no hay cambios en la cadena.
Ejemplo
En el siguiente ejemplo para std :: string :: swap.
#include <iostream>
#include <string>
main () {
std::string buyer ("money");
std::string seller ("goods");
std::cout << "Before the swap, buyer has " << buyer;
std::cout << " and seller has " << seller << '\n';
seller.swap (buyer);
std::cout << " After the swap, buyer has " << buyer;
std::cout << " and seller has " << seller << '\n';
return 0;
}
La salida de muestra debería ser así:
Before the swap, buyer has money and seller has goods
After the swap, buyer has goods and seller has money