Namespaces
Variants

std::set<Key,Compare,Allocator>:: swap

From cppreference.net

void swap ( set & other ) ;
(C++17まで)
void swap ( set & other ) noexcept ( /* see below */ ) ;
(C++17から)
(constexprはC++26から)

コンテナの内容を other の内容と交換します。個々の要素に対するムーブ、コピー、swap操作は一切実行されません。

すべてのイテレータと参照は有効なまま維持されます。 end() イテレータは無効化されます。 Compare Swappable でなければならず、この型のオブジェクトは非メンバーの swap に対する非修飾呼び出しを使用して交換されます。

std:: allocator_traits < allocator_type > :: propagate_on_container_swap :: value true の場合、アロケータは非メンバー関数 swap に対する修飾なしの呼び出しを使用して交換される。そうでない場合、それらは交換されない(そして get_allocator ( ) ! = other. get_allocator ( ) の場合、動作は未定義である)。

(C++11以降)

目次

パラメータ

other - 内容を交換するコンテナ

例外

Compare オブジェクトのswapによってスローされるあらゆる例外。

(C++17まで)
noexcept 指定:
noexcept ( std:: allocator_traits < Allocator > :: is_always_equal :: value
&& std:: is_nothrow_swappable < Compare > :: value )
(C++17以降)

計算量

定数。

#include <functional>
#include <iostream>
#include <set>
template<class Os, class Co>
Os& operator<<(Os& os, const Co& co)
{
    os << '{';
    for (const auto& i : co)
        os << ' ' << i;
    return os << " } ";
}
int main()
{
    std::set<int> a1{3, 1, 3, 2}, a2{5, 4, 5};
    auto it1 = std::next(a1.begin());
    auto it2 = std::next(a2.begin());
    const int& ref1 = *(a1.begin());
    const int& ref2 = *(a2.begin());
    std::cout << a1 << a2 << *it1 << ' ' << *it2 << ' ' << ref1 << ' ' << ref2 << '\n';
    a1.swap(a2);
    std::cout << a1 << a2 << *it1 << ' ' << *it2 << ' ' << ref1 << ' ' << ref2 << '\n';
    // スワップ前に一方のコンテナ内の要素を参照するすべてのイテレータは、
    // スワップ後にも他方のコンテナ内の同じ要素を参照することに注意。
    // 参照についても同様。
    struct Cmp : std::less<int>
    {
        int id{};
        Cmp(int i) : id{i} {}
    };
    std::set<int, Cmp> s1{{2, 2, 1, 1}, Cmp{6}}, s2{{4, 4, 3, 3}, Cmp{9}};
    std::cout << s1 << s2 << s1.key_comp().id << ' ' << s2.key_comp().id << '\n';
    s1.swap(s2);
    std::cout << s1 << s2 << s1.key_comp().id << ' ' << s2.key_comp().id << '\n';
    // したがって、比較関数オブジェクト(Cmp)もスワップ後に交換される。
}

出力:

{ 1 2 3 } { 4 5 } 2 5 1 4
{ 4 5 } { 1 2 3 } 2 5 1 4
{ 1 2 } { 3 4 } 6 9
{ 3 4 } { 1 2 } 9 6

関連項目

std::swap アルゴリズムを特殊化する
(関数テンプレート)