Namespaces
Variants

std:: swap (std::map)

From cppreference.net

ヘッダーで定義 <map>
template < class Key, class T, class Compare, class Alloc >

void swap ( std:: map < Key, T, Compare, Alloc > & lhs,

std:: map < Key, T, Compare, Alloc > & rhs ) ;
(C++17まで)
template < class Key, class T, class Compare, class Alloc >

void swap ( std:: map < Key, T, Compare, Alloc > & lhs,
std:: map < Key, T, Compare, Alloc > & rhs )

noexcept ( /* see below */ ) ;
(C++17から)
(C++26からconstexpr)

std::swap アルゴリズムを std::map に対して特殊化します。 lhs rhs の内容を交換します。 lhs. swap ( rhs ) を呼び出します。

目次

パラメータ

lhs, rhs - 内容を交換するコンテナ

計算量

定数。

例外

noexcept 仕様:
noexcept ( noexcept ( lhs. swap ( rhs ) ) )
(C++17以降)

#include <algorithm>
#include <iostream>
#include <map>
int main()
{
    std::map<int, char> alice{{1, 'a'}, {2, 'b'}, {3, 'c'}};
    std::map<int, char> bob{{7, 'Z'}, {8, 'Y'}, {9, 'X'}, {10, 'W'}};
    auto print = [](std::pair<const int, char>& n)
    {
        std::cout << ' ' << n.first << ':' << n.second;
    };
    // スワップ前の状態を表示
    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);
    // スワップ後の状態を表示
    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:a 2:b 3:c
Bobby: 7:Z 8:Y 9:X 10:W
-- SWAP
Alice: 7:Z 8:Y 9:X 10:W
Bobby: 1:a 2:b 3:c

関連項目

内容を交換する
(公開メンバ関数)