다음을 통해 공유


unordered_multiset::swap

두 컨테이너의 내용을 바꿉니다.

void swap(unordered_multiset& right);

매개 변수

  • right
    바꿔 볼 수 있는 컨테이너입니다.

설명

멤버 함수 간의 제어 된 시퀀스를 맞바꿉니다 *this 및 right.경우 unordered_multiset::get_allocator() == right.get_allocator(), 일정 한 시간에 제어권만 결과적으로 개체는 저장 된 특성을 복사에서 예외를 throw 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>

네임 스페이스: 국방 표준

참고 항목

참조

<unordered_set>

unordered_multiset Class

swap Function (unordered_multiset)

기타 리소스

<unordered_set> 멤버