内存管理中有效的构造函数调用

发布于 2024-11-15 06:09:42 字数 116 浏览 2 评论 0原文

我编写了自己的内存库,它可以帮助我避免内存泄漏并避免碎片问题。一切正常。主要问题是它不适用于类。当我调用 my_alloc(size) 时,我想自动调用构造函数(如果存在)。我可以在不重载新运算符的情况下做到这一点吗?

I have written own memory library which helps me to avoid memory leaks and to avoid fragmentation problems. All works fine. The main problem is it doesn't work valid with classes. When i call my_alloc(size) i want to automatically call constructor if it exists. Can i do it without overloading new operator?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

辞慾 2024-11-22 06:09:42

您可以在分配的内存上使用placement new来调用构造函数而不让 new 进行分配。

重载new有什么问题?

You can use placement new on your allocated memory, to invoke the constructor without letting new do the allocations.

What's wrong with overloading new?

橘味果▽酱 2024-11-22 06:09:42

检查您的 C++ 实现。其中一些(我认为 G++ 编译器会这样做)调用 C 运行时 malloc 来获取 new 的内存,然后调用构造函数。

如果您有这些实现之一,您需要做的就是正确重写标准库 malloc 和 free 函数(阅读库内部文档),C++ 将自动工作。

Check your C++ implementation. Some of them (I think the G++ compiler does this) call the C Runtime malloc to get the memory for new, then call the constructors.

If you have one of those implementations, all that you need to do is properly override the standard library malloc and free functions (read the library internals documentation) and C++ will work automatically.

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