内存管理中有效的构造函数调用
我编写了自己的内存库,它可以帮助我避免内存泄漏并避免碎片问题。一切正常。主要问题是它不适用于类。当我调用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在分配的内存上使用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
?检查您的 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 fornew
, 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.