다음을 통해 공유


allocator::difference_type

할당자에서 관리 되는 개체의 형식에 대 한 포인터의 값의 차이 나타내는 부호 있는 정수 계열 형식으로 합니다.

typedef ptrdiff_t difference_type;

설명

부호 있는 정수 형식 주소 템플릿 클래스 할당자의 개체를 할당할 수 있는 시퀀스에서 두 요소의 차이 나타내는 개체에 설명 합니다.

예제

// allocator_diff_type.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 = 0 ; 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 v1PtrA, v1PtrB;
   const int kA = 4, kB =12;
   v1PtrA = v1Alloc.address( kA );
   v1PtrB = v1Alloc.address( kB );
   allocator<int>::difference_type v1diff = *v1PtrB - *v1PtrA;

   cout << "Pointer v1PtrA addresses " << *v1PtrA << "." << endl;
   cout << "Pointer v1PtrB addresses " << *v1PtrB <<  "." << endl;
   cout << "The difference between the integer's addresses is: "
        << v1diff << "." << endl;
}
  
  
  
  

요구 사항

헤더: <memory>

네임 스페이스: std

참고 항목

참조

allocator Class