std::swap(std::unordered_map) - cppreference.com
De cppreference.com
</tbody> <tbody class="t-dcl-rev "> </tbody><tbody>
| Definido en el archivo de encabezado |
||
|
|
(desde C++11) (hasta C++17) |
|
|
|
(desde C++17) | |
Especializa el algoritmo std::swap para std::unordered_map. Intercambia el contenido de lhs y rhs. Llama a lhs.swap(rhs).
Parámetros
| lhs, rhs | - | Los contenedores cuyo contenido hay que intercambiar. |
Valor de retorno
(Ninguno)
Complejidad
Constant.
Excepciones
| (desde C++17) |
Ejemplo
#include <algorithm> #include <iostream> #include <...> int main() { std::unordered_map<int, char> alice{{1, 'a'}, {2, 'b'}, {3, 'c'}}; std::unordered_map<int, char> bob{{7, 'Z'}, {8, 'Y'}, {9, 'X'}, {10, 'W'}}; auto print = [](std::pair<const int, char>& n) { std::cout << ' ' << n.first << ':' << n.second; }; // Imprimir estado antes del intercambio std::cout << "Alice:"; std::for_each(alice.begin(), alice.end(), print); std::cout << "\nBobby:"; std::for_each(bob.begin(), bob.end(), print); std::cout << '\n'; std::cout << "-- INTERCAMBIO\n"; std::swap(alice, bob); // Imprimir estado después del intercambio std::cout << "Alice:"; std::for_each(alice.begin(), alice.end(), print); std::cout << "\nBobby:"; std::for_each(bob.begin(), bob.end(), print); std::cout << '\n'; }
Posible salida:
Alice: 1:a 2:b 3:c Bobby: 7:Z 8:Y 9:X 10:W -- INTERCAMBIO Alice: 7:Z 8:Y 9:X 10:W Bobby: 1:a 2:b 3:c
Véase también
| Intercambia el contenido. (función miembro pública) [editar] |