std::set<Key,Compare,Allocator>::swap
From cppreference.com
void swap( set& other ); |
(C++17まで) | |
| void swap( set& other ) noexcept(/* 以下参照 */); |
(C++17以降) | |
コンテナの内容を other の内容と交換します。個々の要素に対するムーブ、コピー、またはスワップ操作は呼び出されません。
すべてのイテレータと参照は有効なままである。end() イテレータは無効になる。Compare オブジェクトは Swappable である必要があり、非メンバ swap の修飾されていない呼び出しを使用して交換される。
|
std::allocator_traits<allocator_type>::propagate_on_container_swap::value が true の場合、アロケータは非メンバ |
(C++11以降) |
目次 |
[編集] パラメータ
| その他 | - | 内容を交換するコンテナ |
[編集] 例外
|
|
(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 (auto const& 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'; // Note that every iterator referring to an element in one container before the swap // refers to the same element in the other container after the swap. Same is true // for references. 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'; // So, comparator objects (Cmp) are also exchanged after the swap. }
出力
{ 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 アルゴリズムを特殊化する (関数テンプレート) |