如何将 new 放置在堆栈上
考虑以下代码:
char mem[sizeof(char)];
void* p = mem;
f = new(p) char;
由于变量 mem 的内存应该位于堆栈上 那么,为什么这块内存最终没有被自动回收呢?
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
内存是自动收集的。
但析构函数不会被自动调用。当您使用放置
new
时,您应该将其与手动析构函数调用配对。对于 char 来说,这当然并不重要,因为析构函数很简单。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. Forchar
this doesn't really matter of course, since the destructor is trivial.