다음을 통해 공유


array::iterator

제어 되는 시퀀스에 대 한 반복기의 형식입니다.

typedef implementation-defined iterator;

설명

로 제어 되는 시퀀스의 임의 액세스 반복기를 사용할 수 있는 개체 종류를 설명 합니다.

예제

// std__array__array_iterator.cpp 
// compile with: /EHsc /W4
#include <array> 
#include <iostream> 

typedef std::array<int, 4> MyArray; 

int main() 
{ 
    MyArray c0 = {0, 1, 2, 3}; 

    // display contents " 0 1 2 3" 
    std::cout << "it1:";
    for ( MyArray::iterator it1 = c0.begin(); 
          it1 != c0.end(); 
          ++it1 ) {
       std::cout << " " << *it1; 
    }
    std::cout << std::endl; 

    // display first element " 0" 
    MyArray::iterator it2 = c0.begin(); 
    std::cout << "it2:";
    std::cout << " " << *it2; 
    std::cout << std::endl; 

    return (0); 
} 
  
  

요구 사항

헤더: <array>

네임 스페이스: std

참고 항목

참조

<array>

array Class (TR1)

array::const_iterator