Consider the following codes:

char mem[sizeof(char)];
void* p = mem;
f = new(p) char;

Since the memory for variable mem should be on stack So, why doesn't this piece of memory get collected automatically in the end.

link|improve this question
1  
Note that this won't work in general: char mem[sizeof(T)]; new (mem) T(); because T may have alignment restrictions that mem did not satisfy. – GManNickG Jan 17 at 20:50
feedback

1 Answer

The memory IS collected automatically.

But the destructor won't be called automatically. When you use placement new, you should pair that with a manual destructor call. For char this doesn't really matter of course, since the destructor is trivial.

link|improve this answer
Thank you, Ben. It really helps me to figured out some questions about placement new. – Yu Guo Jan 17 at 20:41
feedback

Your Answer

 
or
required, but never shown

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