다음을 통해 공유


allocator::address

값이 지정 된 개체의 주소를 찾습니다.

pointer address(
   reference _Val
   ) const;
const_pointer address(
   const_reference _Val
   ) const;

매개 변수

  • _Val
    Const 또는 nonconst 해당 주소를 검색 하 고 개체의 값입니다.

반환 값

상수 또는 nonconst 개체 포인터 const 또는 nonconst 값을 각각 발견.

설명

멤버 함수 주소를 반환 _Val의 포인터를 사용 해야에 대 한 폼 요소를 할당 합니다.

예제

// allocator_address.cpp
// compile with: /EHsc
#include <memory>
#include <algorithm>
#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( 2 * i );
   }

   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 = 8;
   v1Ptr = v1Alloc.address( *find(v1.begin( ), v1.end( ), k) );
   // v1Ptr = v1Alloc.address( k );
   cout << "The integer addressed by v1Ptr has a value of: "
        << "*v1Ptr = " << *v1Ptr << "." << endl;
}
  
  

요구 사항

헤더: <memory>

네임 스페이스: std

참고 항목

참조

allocator Class