vote up 1 vote down star

Suppose I am allocating an arbitrary block of memory. Part of this block is atomic data (ints, bytes, etc.) and some of this block of data I want to be occupied by objects. Can I turn any arbitrary piece of memory into an object through a constructor call, such as data->MyObject () and subsequently destroying the object via data->~MyObject(), or is this impossible?

flag

Duplicate: stackoverflow.com/questions/222557/… – Brian R. Bondy Aug 4 at 19:35
2  
It's kind of the inverse of that question, actually. That question is "I've heard of placement new, what is it?" and this one is "I want to do (description of placement new's behavior), how do I do that?" – Tyler McHenry Aug 4 at 20:15

2 Answers

vote up 13 vote down check

What you are looking for is called placement new.

link|flag
vote up 8 vote down

Placement New:

std::vector<char>  data(sizeof(X)); // Where X is a class
X*   ptr = new (&data[0]) X(1,2,3);

// Work with ptr

ptr->~X();

As per comment below:

std::vector be default use '20.6.1 The default allocator' for retrieving storage. The default allocator method Allocator::allocate(n) '20.6.1.1' allocate enough storage for n objects of T (using n * sizeof(T)) aligned properly for objects of type 'T'. This storage is allocated by calling '::operator new(m)' 18.5.1.1.1 (where m is n * sizeof(T) in our case sizeof(X) * sizeof(char)) this allocates enough memory for the request aligned for any type of size m.

Thus by using

std::vector<char>  data(sizeof(X))

This will allocate enough memory for an object of type X but it is also makes sure that it correctly aligned for objects of that type X. Note: As long as the amount of memory we try and reserve with the vector is at least as large as the object we want to align for then the standard guarantees that the memory will be correctly aligned.

Unfortunately statically allocated memory has no such guarantee. So people who use an array may be in for a shock.

char   data[sizeof(X)];
X*     ptr = new (&data[0]) X(1,2,3);   // Oops. This alignment may not work.
link|flag
Does std::vector guarentee that its buffer is aligned for all types? – bdonlan Aug 4 at 20:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.