다음을 통해 공유


allocator::reference

할당자에서 관리 되는 개체의 형식에 대 한 참조를 제공 하는 형식입니다.

typedef value_type& reference;

설명

참조 형식 템플릿 클래스 할당자의 개체를 할당할 수 있는 개체를 지정 하는 개체를 설명 합니다.

예제

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

using namespace std;

int main( ) 
{
   vector <double> v;
   vector <double> ::iterator vIter, vfIter;
   vector <double> :: allocator_type vAlloc;

   int j;
   for ( j = 1 ; j <= 7 ; j++ )
   {
      v.push_back( 100.0 * j );
   }

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

   vfIter = v.begin( );
   allocator<double>::reference vref =*vfIter;
   cout << "The value of the element referred to by vref is: "
        << vref << ",\n the first element in the vector." << endl;

   // nonconst references can have their elements modified
   vref = 150;
   cout << "The element referred to by vref after being modified is: "
        << vref << "." << endl;
}
  
  
  

요구 사항

헤더: <memory>

네임 스페이스: std

참고 항목

참조

allocator Class