unordered_multiset::swap
交换两个容器的内容。
void swap(unordered_multiset& right);
参数
- right
交换的容器。
备注
成员函数交换。 *this 和 right之间的控件序列。 如果 unordered_multiset::get_allocator() == right.get_allocator(),它在常数时这样做,仅引发异常由于复制类型 Tr存储的特征的对象,并且,其无效引用,即在两个控件序列的元素的指针或迭代器。 否则,它将执行大量的元素分配,然后构造函数调用比例与元素数在两个控件的序列。
示例
// std_tr1__unordered_set__unordered_multiset_swap.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_multiset<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents " [c] [b] [a]"
for (Myset::const_iterator it = c1.begin();
it != c1.end(); ++it)
std::cout << " [" << *it << "]";
std::cout << std::endl;
Myset c2;
c2.insert('d');
c2.insert('e');
c2.insert('f');
c1.swap(c2);
// display contents " [f] [e] [d]"
for (Myset::const_iterator it = c1.begin();
it != c1.end(); ++it)
std::cout << " [" << *it << "]";
std::cout << std::endl;
swap(c1, c2);
// display contents " [c] [b] [a]"
for (Myset::const_iterator it = c1.begin();
it != c1.end(); ++it)
std::cout << " [" << *it << "]";
std::cout << std::endl;
return (0);
}
要求
**标题:**unordered_set
命名空间: std
请参见
参考
swap Function (unordered_multiset)