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.
|
Consider the following codes:
Since the memory for variable mem should be on stack So, why doesn't this piece of memory get collected automatically in the end. | ||||
|
feedback
|
|
The memory IS collected automatically. But the destructor won't be called automatically. When you use placement | |||
feedback
|
char mem[sizeof(T)]; new (mem) T();becauseTmay have alignment restrictions thatmemdid not satisfy. – GManNickG Jan 17 at 20:50