다음을 통해 공유


array::array

배열 개체를 만듭니다.

    array();
    array(const array& right);

매개 변수

  • right
    개체 또는 범위를 삽입 합니다.

설명

생성자:

    array();

제어 시퀀스 초기화 되지 않은 (또는 기본 초기화)을 그대로 둡니다.지정 된 초기화 되지 않은 제어 되는 시퀀스를 사용 합니다.

생성자:

    array(const array& right);

initializes the controlled sequence with the sequence [right.array::begin(), right.array::end()).배열 개체에 의해 제어 되는 시퀀스의 복사본은 초기 제어 되는 시퀀스를 지정 하려면 사용 right.

예제

 

// std_tr1__array__array_array.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(c0); 
 
// display contents " 0 1 2 3" 
    for (Myarray::const_iterator it = c1.begin(); 
        it != c1.end(); ++it) 
        std::cout << " " << *it; 
    std::cout << std::endl; 
 
    return (0); 
    } 
 
  

요구 사항

헤더: <array>

네임 스페이스: std

참고 항목

참조

<array>

array Class (TR1)

array::assign

array::operator=