unordered_set::swap
두 컨테이너의 내용을 바꿉니다.
void swap(unordered_set& right);
매개 변수
- right
바꿔 볼 수 있는 컨테이너입니다.
설명
멤버 함수 간의 제어 된 시퀀스를 맞바꿉니다 *this 및 right.경우 unordered_set::get_allocator() == right.get_allocator(), 일정 한 시간에 제어권만 결과적으로 개체는 저장 된 특성을 복사에서 예외를 throw Tr, 및 없음 참조, 포인터, 또는 두 제어 된 시퀀스의 요소를 지정 하는 반복기를 무효화 합니다.그렇지 않으면 두 제어 된 시퀀스의 다양 한 요소 및 요소의 수에 비례하여 생성자 호출을 수행합니다.
예제
// 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>
네임 스페이스: 국방 표준