Search code examples
c++stlc++11allocator

Custom allocator in std::vector


Is it possible to use custom allocator for std::vector internal allocations? If yes, how?


Solution

  • You basically have to implement your allocator type to conform to the Allocator concept.

    The linked page lists all requirements of that type, but the core functionality is implemented in the allocate member function.