Namespaces
Variants
Views
Actions

std::pmr::polymorphic_allocator<T>::new_object

From cppreference.com
< cpp‎ | memory‎ | polymorphic allocator
Revision as of 07:15, 26 February 2019 by Cubbi (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 
 
Dynamic memory management
Uninitialized memory algorithms
Constrained uninitialized memory algorithms
Allocators
Garbage collection support
(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)



 
 
template< class U, class CtorArgs... >
U* new_object( CtorArgs&&... ctor_args );
(since C++20)

Allocates and constructs an object of type U.

Equivalent to

U* p = allocate_object<U>();
try {
  construct(p, std::forward<CtorArgs>(ctor_args)...);
} catch (...) {
  deallocate_object(p);
  throw;
}
return p;

Contents

Parameters

ctor_args - the arguments to forward to the the constructor of U

Return value

A pointer to the allocated and constucted object.

Notes

This function was introduced for use with the non-template allocator std::polymorphic_allocator<>, but it may be useful in any specialization as a shortcut to avoid having to rebind from std::polymorphic_allocator<T> to std::polymorphic_allocator<U>, and having to call allocate, construct, and deallocate individually.

Since U is not deduced, it must be provided as a template argument when calling this function.

Exceptions

May throw any exceptions thrown by the call to allocate_object or the constructor of U.

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]
allocate memory
(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]