Tagged Questions
10
votes
13answers
2k views
What are uses of the C++ construct “placement new”?
I just learned about the C++ construct called "placement new". It allows you to exactly control where a pointer points to in memory. It looks like this:
#include <new> // Must ...