What is an in-place constructor in C++?(什么是 C++ 中的就地构造函数?)
问题描述
可能的重复:
C++的“placement new”
什么是 C++ 中的就地构造函数?
What is an in-place constructor in C++?
例如Datatype *x = new(y) Datatype();
推荐答案
这称为放置新操作符.它允许您提供将分配数据的内存,而无需 new
运算符分配它.例如:
This is called the placement new operator. It allows you to supply the memory the data will be allocated in without having the new
operator allocate it. For example:
Foo * f = new Foo();
上面会为你分配内存.
void * fm = malloc(sizeof(Foo));
Foo *f = new (fm) Foo();
以上将使用调用malloc
分配的内存.new
不会再分配了.但是,您不仅限于课程.您可以对通过调用 new
分配的任何类型使用放置 new 运算符.
The above will use the memory allocated by the call to malloc
. new
will not allocate any more. You are not, however, limited to classes. You can use a placement new operator for any type you would allocate with a call to new
.
placement new 的一个问题"是,您不应该释放通过使用delete
关键字调用placement new 运算符所分配的内存.您将通过直接调用析构函数来销毁对象.
A 'gotcha' for placement new is that you should not release the memory allocated by a call to the placement new operator using the delete
keyword. You will destroy the object by calling the destructor directly.
f->~Foo();
手动调用析构函数后,内存可以按预期释放.
After the destructor is manually called, the memory can then be freed as expected.
free(fm);
这篇关于什么是 C++ 中的就地构造函数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:什么是 C++ 中的就地构造函数?
基础教程推荐
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- Windows Media Foundation 录制音频 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 从 std::cin 读取密码 2021-01-01