Namensräume
Varianten
Aktionen

std::swap(std::unordered_multiset)

Von cppreference.com
 
 
 
 
Definiert in Header <unordered_set>
template< class Key, class Hash, class KeyEqual, class Alloc >

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

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

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

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

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

Inhalt

[bearbeiten] Parameter

lhs, rhs - Container, deren Inhalte getauscht werden sollen

[bearbeiten] Rückgabewert

(keine)

[bearbeiten] Komplexität

Konstant.

Ausnahmen

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

[bearbeiten] Beispiel

#include <algorithm>
#include <iostream>
#include <unordered_set>
 
int main()
{
    std::unordered_multiset<int> alice{1, 2, 3};
    std::unordered_multiset<int> bob{7, 8, 9, 10};
 
    auto print = [](const int& n) { std::cout << ' ' << n; };
 
    // Print state before swap
    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 << "-- SWAP\n";
    std::swap(alice, bob);
 
    // Print state after swap
    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
-- SWAP
Alice: 7 8 9 10
Bobby: 1 2 3

[bearbeiten] Siehe auch

tauscht die Inhalte
(public member function) [edit]