다음을 통해 공유


array::const_pointer

형식 요소에 대 한 상수 포인터입니다.

typedef const Ty *const_pointer;

설명

시퀀스의 요소에 대 한 상수 포인터 사용할 수 있는 개체 종류를 설명 합니다.

예제

 

// std_tr1__array__array_const_pointer.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 first element " 0" 
    Myarray::const_pointer ptr = &*c0.begin(); 
    std::cout << " " << *ptr; 
    std::cout << std::endl; 
 
    return (0); 
    } 
 
  

요구 사항

헤더: <array>

네임 스페이스: std

참고 항목

참조

<array>

array Class (TR1)

array::pointer