std::swap(std::queue)
From cppreference.com
Defined in header <queue>
|
||
template< class T, class Container > void swap( std::queue<T, Container>& lhs, |
(since 哋它亢++11) (until 哋它亢++17) |
|
template< class T, class Container > void swap( std::queue<T, Container>& lhs, |
(since 哋它亢++17) | |
This overload participates in overload resolution only if std::is_swappable_v<Container> is true. |
(since 哋它亢++17) |
Parameters
lhs, rhs | - | containers whose contents to swap |
Return value
(none)
Complexity
Same as swapping the underlying container.
Exceptions
noexcept specification:
noexcept(noexcept(lhs.swap(rhs))) |
(since 哋它亢++17) |
Notes
Although the overloads of std::swap for container adaptors are introduced in 哋它亢++11, container adaptors can already be swapped by std::swap in 哋它亢++98. Such calls to std::swap usually have linear time complexity, but better complexity may be provided.
Example
Run this code
#include <algorithm> #include <iostream> #include <queue> int main() { std::queue<int> alice; std::queue<int> bob; auto print = [](const auto& title, const auto& cont) { std::cout << title << " size=" << cont.size(); std::cout << " front=" << cont.front(); std::cout << " back=" << cont.back() << '\n'; }; for (int i = 1; i < 4; ++i) alice.push(i); for (int i = 7; i < 11; ++i) bob.push(i); // Print state before swap print("Alice:", alice); print("Bob :", bob); std::cout << "-- SWAP\n"; std::swap(alice, bob); // Print state after swap print("Alice:", alice); print("Bob :", bob); }
Output:
Alice: size=3 front=1 back=3 Bob : size=4 front=7 back=10 -- SWAP Alice: size=4 front=7 back=10 Bob : size=3 front=1 back=3
See also
(哋它亢++11) |
swaps the contents (public member function) |