다음을 통해 공유


array::swap

두 배열의 내용을 바꿉니다.

void swap(array& right);

매개 변수

  • right
    배열 내용을 바꿀 수 있습니다.

설명

멤버 함수 간의 제어 시퀀스를 맞바꿉니다 *this 및 right.다양 한 요소를 할당을 수행 하 고 생성자를 호출 하는 비례 N.

예제

 

// std_tr1__array__array_swap.cpp 
// compile with: /EHsc 
#include <array> 
#include <iostream> 
 
typedef std::array<int, 4> Myarray; 
int main() 
    { 
    Myarray c0 = {0, 1, 2, 3}; 
 
// display contents " 0 1 2 3" 
    for (Myarray::const_iterator it = c0.begin(); 
        it != c0.end(); ++it) 
        std::cout << " " << *it; 
    std::cout << std::endl; 
 
    Myarray c1 = {4, 5, 6, 7}; 
    c0.swap(c1); 
 
// display swapped contents " 4 5 6 7" 
    for (Myarray::const_iterator it = c0.begin(); 
        it != c0.end(); ++it) 
        std::cout << " " << *it; 
    std::cout << std::endl; 
 
    swap(c0, c1); 
 
// display swapped contents " 0 1 2 3" 
    for (Myarray::const_iterator it = c0.begin(); 
        it != c0.end(); ++it) 
        std::cout << " " << *it; 
    std::cout << std::endl; 
 
    return (0); 
    } 
 
  

요구 사항

헤더: <array>

네임 스페이스: std

참고 항목

참조

<array>

array::operator=