Namespaces
Variants

std:: swap (std::vector)

From cppreference.net

Definiert im Header <vector>
template < class T, class Alloc >

void swap ( std:: vector < T, Alloc > & lhs,

std:: vector < T, Alloc > & rhs ) ;
(bis C++17)
template < class T, class Alloc >

void swap ( std:: vector < T, Alloc > & lhs,
std:: vector < T, Alloc > & rhs )

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

Spezialisiert den std::swap -Algorithmus für std::vector . 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 <vector>
int main()
{
    std::vector<int> alice{1, 2, 3};
    std::vector<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';
}

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)