GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::allocator_traits::construct(3) C++ Standard Libary std::allocator_traits::construct(3)

std::allocator_traits::construct - std::allocator_traits::construct


Defined in header <memory>
template< class T, class... Args > (since C++11)
static void construct( Alloc& a, T* p, Args&&... args ); (until C++20)
template< class T, class... Args > (since C++20)
static constexpr void construct( Alloc& a, T* p, Args&&... args );


If possible, constructs an object of type T in allocated uninitialized storage
pointed to by p, by calling


a.construct(p, std::forward<Args>(args)...)


If the above is not possible (e.g. Alloc does not have the member function
construct()), then calls


::new (static_cast<void*>(p)) T(std::forward<Args>(args)...) (until C++20)
std::construct_at(p, std::forward<Args>(args)...) (since C++20)


a - allocator to use for construction
p - pointer to the uninitialized storage on which a T object will be
constructed
the constructor arguments to pass to a.construct() or to
placement-new
args... - (until C++20)
std::construct_at()
(since C++20)


(none)


This function is used by the standard library containers when inserting, copying, or
moving elements.


Because this function provides the automatic fall back to placement new, the member
function construct() is an optional Allocator requirement since C++11.


operator new allocation functions
operator new[] (function)
construct constructs an object in allocated storage
(until C++20) (public member function of std::allocator<T>)
construct_at creates an object at a given address
(C++20) (function template)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.