Namespaces
Variants

std:: swap (std::unordered_multiset)

From cppreference.net

定义于头文件 <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 ) ;
(C++11 起)
(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 ( /* 见下文 */ ) ;
(C++17 起)
(C++26 起为 constexpr)

std::swap 算法针对 std::unordered_multiset 进行特化。交换 lhs rhs 的内容。调用 lhs. swap ( rhs )

目录

参数

lhs, rhs - 待交换内容的容器

复杂度

常量。

异常处理

noexcept 规范:
noexcept ( noexcept ( lhs. swap ( rhs ) ) )
(自 C++17 起)

示例

#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; };
    // 交换前的状态输出
    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 << "-- 交换\n";
    std::swap(alice, bob);
    // 交换后的状态输出
    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';
}

可能的输出:

Alice: 1 2 3
Bobby: 7 8 9 10
-- 交换
Alice: 7 8 9 10
Bobby: 1 2 3

参见

交换内容
(公开成员函数)