다음을 통해 공유


allocator::const_pointer

할당자에서 관리 되는 개체의 형식에 대 한 상수 포인터를 제공 하는 형식입니다.

typedef const value_type *const_pointer;

설명

개체 포인터 형식을 설명 ptr 는 수 지정, 식을 통해 * ptr, const 개체 클래스 할당자 템플릿 개체를 할당할 수 있습니다.

예제

// allocator_const_ptr.cpp
// compile with: /EHsc
#include <memory>
#include <iostream>
#include <vector>

using namespace std;

int main( ) 
{
   vector <int> v1;
   vector <int>::iterator v1Iter;
   vector <int>:: allocator_type v1Alloc;

   int i;
   for ( i = 1 ; i <= 7 ; i++ )
   {
      v1.push_back( i * 2 );
   }

   cout << "The original vector v1 is:\n ( " ;
   for ( v1Iter = v1.begin( ) ; v1Iter != v1.end( ) ; v1Iter++ )
      cout << *v1Iter << " ";
   cout << ")." << endl;

   allocator<int>::const_pointer v1Ptr;
   const int k = 10;
   v1Ptr = v1Alloc.address( k );

   cout << "The integer's address found has a value of: "
        << *v1Ptr << "." << endl;
}
  
  

요구 사항

헤더: <memory>

네임 스페이스: std

참고 항목

참조

allocator Class