unordered_set::swap
交換兩個容器的內容。
void swap(unordered_set& right);
參數
- right
交換的容器。
備註
成員函式交換在 *this 和 right的控制順序。 如果 unordered_set::get_allocator() == right.get_allocator(),它在常數時間執行,它只會擲回例外狀況因為重複型別 Tr儲存的特性,物件,而沒有將兩個序列中的項目參考、指標或 Iterator。 否則,它會執行許多工作項目,而且建構函式呼叫比例與項目數目兩個受控制序列的。
範例
// std_tr1__unordered_set__unordered_set_swap.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<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