如何将 new 放置在堆栈上

发布于 2024-12-27 18:32:25 字数 146 浏览 1 评论 0原文

考虑以下代码:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

薄情伤 2025-01-03 18:32:25

内存是自动收集的。

但析构函数不会被自动调用。当您使用放置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. For char this doesn't really matter of course, since the destructor is trivial.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文