다음을 통해 공유


array::operator

지정 된 위치에 있는 요소에 액세스합니다.

reference operator[](size_type off);
const_reference operator[](size_type off) const;

매개 변수

  • off
    액세스할 요소의 위치입니다.

설명

멤버 함수 위치 제어 되는 시퀀스의 요소에 대 한 참조를 반환 합니다. off.해당 위치가 유효 하면 동작이 정의 되지 않습니다.

예제

 

// std_tr1__array__array_operator_sub.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; 
 
// display odd elements " 1 3" 
    std::cout << " " << c0[1]; 
    std::cout << " " << c0[3]; 
    std::cout << std::endl; 
 
    return (0); 
    } 
 
  

요구 사항

헤더: <array>

네임 스페이스: std

참고 항목

참조

<array>

array Class (TR1)

array::at