std:: swap (std::list)
|
Definiert in Header
<list>
|
||
|
template
<
class
T,
class
Alloc
>
void
swap
(
std::
list
<
T, Alloc
>
&
lhs,
|
(bis C++17) | |
|
template
<
class
T,
class
Alloc
>
void
swap
(
std::
list
<
T, Alloc
>
&
lhs,
|
(seit C++17)
(constexpr seit C++26) |
|
Spezialisiert den std::swap -Algorithmus für std::list . 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.
Exceptions
|
noexcept
Spezifikation:
noexcept
(
noexcept
(
lhs.
swap
(
rhs
)
)
)
|
(seit C++17) |
Beispiel
#include <algorithm> #include <iostream> #include <list> int main() { std::list<int> alice{1, 2, 3}; std::list<int> bob{7, 8, 9, 10}; auto print = [](const int& n) { std::cout << ' ' << n; }; // Zustand vor dem Austausch 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 << "-- AUSTAUSCH\n"; std::swap(alice, bob); // Zustand nach dem Austausch 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 -- AUSTAUSCH Alice: 7 8 9 10 Bobby: 1 2 3
Siehe auch
|
tauscht die Inhalte aus
(öffentliche Elementfunktion) |