Namespaces
Variants
Actions

std::pmr::polymorphic_allocator<T>::allocate

From cppreference.com
 
C++
 
Memory management library
(exposition only*)
Allocators
Uninitialized memory algorithms
Constrained uninitialized memory algorithms
Memory resources
Uninitialized storage (until C++20)
(until C++20*)
(until C++20*)

Garbage collector support (until C++23)
(C++11)(until C++23)
(C++11)(until C++23)
(C++11)(until C++23)
(C++11)(until C++23)
(C++11)(until C++23)
(C++11)(until C++23)
 
std::pmr::polymorphic_allocator
T* allocate( std::size_t n );
(since C++17)

Allocates storage for n objects of type T using the underlying memory resource. Equivalent to return static_cast<T*>(resource()->allocate(n * sizeof(T), alignof(T));.

Contents

[edit] Parameters

n - the number of objects to allocate storage for

[edit] Return value

A pointer to the allocated storage.

[edit] Exceptions

Throws std::bad_array_new_length if n > std::numeric_limits<std::size_t>::max() / sizeof(T); may also throw any exceptions thrown by the call to resource()->allocate.

[edit] Defect reports

The following behavior-changing defect reports were applied retroactively to previously published C++ standards.

DR Applied to Behavior as published Correct behavior
LWG 3038 C++17 allocate might allocate storage of wrong size throws length_error instead
LWG 3237 C++17 the exception thrown by allocate was inconsistent with std::allocator::allocate made consistent

[edit] See also

allocate raw aligned memory from the underlying resource
(public member function) [edit]
allocates raw memory suitable for an object or an array
(public member function) [edit]
allocates and constructs an object
(public member function) [edit]
[static]
allocates uninitialized storage using the allocator
(public static member function of std::allocator_traits<Alloc>) [edit]
allocates memory
(public member function of std::pmr::memory_resource) [edit]

Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!

Check out: eBank.nz (Art Generator) | Netwrck.com (AI Tools) | Text-Generator.io (AI API) | BitBank.nz (Crypto AI) | ReadingTime (Kids Reading) | RewordGame | BigMultiplayerChess | WebFiddle | How.nz | Helix AI Assistant