std::multiset<Key,Compare,Allocator>:: swap
|
void
swap
(
multiset
&
other
)
;
|
(C++17まで) | |
|
void
swap
(
multiset
&
other
)
noexcept
(
/* see below */
)
;
|
(C++17から)
(constexprはC++26から) |
|
コンテナの内容を other の内容と交換します。個々の要素に対するムーブ、コピー、スワップ操作は一切呼び出しません。
すべてのイテレータと参照は有効なまま維持されます。
end()
イテレータは無効化されます。
Compare
は
Swappable
でなければならず、この型のオブジェクトは非メンバーの
swap
に対する修飾なし呼び出しを使用して交換されます。
|
std::
allocator_traits
<
allocator_type
>
::
propagate_on_container_swap
::
value
が
true
の場合、アロケータは非メンバー関数
|
(C++11以降) |
目次 |
パラメータ
| other | - | 内容を交換するコンテナ |
例外
|
|
(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::multiset<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::multiset<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 3 } { 4 5 5 } 2 5 1 4
{ 4 5 5 } { 1 2 3 3 } 2 5 1 4
{ 1 1 2 2 } { 3 3 4 4 } 6 9
{ 3 3 4 4 } { 1 1 2 2 } 9 6
関連項目
|
std::swap
アルゴリズムを特殊化
(関数テンプレート) |