Namespaces
Variants

std:: swap (std::unordered_set)

From cppreference.net

Definiert im Header <unordered_set>
template < class Key, class Hash, class KeyEqual, class Alloc >

void swap ( std:: unordered_set < Key, Hash, KeyEqual, Alloc > & lhs,

std:: unordered_set < Key, Hash, KeyEqual, Alloc > & rhs ) ;
(seit C++11)
(bis C++17)
template < class Key, class Hash, class KeyEqual, class Alloc >

void swap ( std:: unordered_set < Key, Hash, KeyEqual, Alloc > & lhs,
std:: unordered_set < Key, Hash, KeyEqual, Alloc > & rhs )

noexcept ( /* siehe unten */ ) ;
(seit C++17)
(constexpr seit C++26)

Spezialisiert den std::swap -Algorithmus für std::unordered_set . Tauscht die Inhalte von lhs und rhs . Ruft lhs. swap ( rhs ) auf.

Inhaltsverzeichnis

Parameter

lhs, rhs - Container, deren Inhalte ausgetauscht werden sollen

Komplexität

Konstante.

Ausnahmen

noexcept Spezifikation:
noexcept ( noexcept ( lhs. swap ( rhs ) ) )
(seit C++17)

Beispiel

#include <algorithm>
#include <iostream>
#include <unordered_set>
int main()
{
    std::unordered_set<int> alice{1, 2, 3};
    std::unordered_set<int> bob{7, 8, 9, 10};
    auto print = [](const int& n) { std::cout << ' ' << n; };
    // Zustand vor dem Tausch ausgeben
    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 << "-- TAUSCH\n";
    std::swap(alice, bob);
    // Zustand nach dem Tausch ausgeben
    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';
}

Mögliche Ausgabe:

Alice: 1 2 3
Bobby: 7 8 9 10
-- TAUSCH
Alice: 7 8 9 10
Bobby: 1 2 3

Siehe auch

tauscht die Inhalte aus
(öffentliche Elementfunktion)