deque::get_allocator
에 있지 않은 deque를 만드는 데 사용 되는 할당 기 개체의 복사본을 반환 합니다.
Allocator get_allocator( ) const;
반환 값
할당자는 있지 않은 deque가 사용 합니다.
설명
할당자 있지 않은 deque 클래스에 대 한 클래스 저장소를 관리 하는 방법을 지정 합니다.STL 컨테이너 클래스를 제공 하는 기본 할당자에 대 한 대부분의 프로그래밍 요구를 충분히 있습니다.작성 한 할당자 클래스를 직접 사용 하는 고급 C++ 항목입니다.
예제
// deque_get_allocator.cpp
// compile with: /EHsc
#include <deque>
#include <iostream>
int main( )
{
using namespace std;
// The following lines declare objects that use the default allocator.
deque <int> c1;
deque <int, allocator<int> > c2 = deque <int, allocator<int> >( allocator<int>( ) );
// c3 will use the same allocator class as c1
deque <int> c3( c1.get_allocator( ) );
deque <int>::allocator_type xlst = c1.get_allocator( );
// You can now call functions on the allocator class used by c1
}
요구 사항
헤더: <deque>
네임 스페이스: std