The "placement new" operator is declared as such:
void* operator new (std::size_t size, void* ptr) noexcept;
But while it doesn't involve any actual allocation so bad allocation exceptions are eliminated, it is still possible that the pointer points to a bad location, in which case one would expect to get a range or over/underflow error, but won't the fact that it was declared as noexcept
simply terminate execution instead?
Also does this mean prior to C++11 placement new will throw and try to handle an std::unexpected
in case of std::set_unexpected
instead of directly crashing?
Shouldn't there be a throwing overload of placement new "just in case"?
To understand what this function does, I think it is necessary to take a look at what a new-expression does: It calls an allocation function to obtain storage for the object, then it constructs that object in the memory region the allocation function indicated (by returning a pointer to said memory region).
This implies that construction is never performed by the allocation function itself. The allocation function has the strange name
operator new
.It is possible to supply additional parameters for the allocation function by using the placement-new syntax:
However, placement-new typically refers to a very specific new-expression:
This form is intended to construct an object in an already allocated region of memory, i.e. it is intended to just call the constructor, but not perform any allocation.
No special case has been introduced in the core language for that case. Rather, a special allocation function has been added to the Standard Library:
Being a no-op (
return ptr;
), it allows calling the constructor for an object explicitly, constructing at a given memory location. This function call can be eliminated by the compiler, so no overhead is introduced.