Is it possible in C++ to create a new object at a specific memory location? I have a block of shared memory in which I would like to create an object. Is this possible?
|
|
You want placement Edit: make sure that you understand the note about being responsible for calling the destructor explicitly for objects created using placement |
||||||||||||||||||
|
|
|
Yes. You need to use placement variant of operator new(). For example:
Please note that placement new does not throw exception. |
|||
|
|
|
|
Unfortunately the artivle on c++-faq-lite is BAD. You need to this:
Advantages of this technique.
|
||||
|
|
|
if you want to allocate a lot of fine-grained objects, the best approach will be to use placement new in conjunction with some sort of a ring buffer. otherwise, you will have to keep track of the pointers aside from the object pointers themselves. |
||
|
|
