Create new C++ object at specific memory address?(在特定的内存地址创建新的 C++ 对象?)
问题描述
在 C++ 中是否可以在特定的内存位置创建一个新对象?我有一块共享内存,我想在其中创建一个对象.这可能吗?
Is it possible in C++ to create a new object at a specific memory location? I have a block of shared memory in which I would like to create an object. Is this possible?
推荐答案
你想要 placement <代码>新代码>().它基本上使用现有内存块调用构造函数,而不是从堆中分配新内存.
You want placement new
(). It basically calls the constructor using a block of existing memory instead of allocating new memory from the heap.
在使用之前,请确保您了解有关负责为使用位置 new()
创建的对象显式调用析构函数的说明!
make sure that you understand the note about being responsible for calling the destructor explicitly for objects created using placement new()
before you use it!
这篇关于在特定的内存地址创建新的 C++ 对象?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在特定的内存地址创建新的 C++ 对象?
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- 从python回调到c++的选项 2022-11-16
- 近似搜索的工作原理 2021-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- STL 中有 dereference_iterator 吗? 2022-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- C++ 协变模板 2021-01-01
- 静态初始化顺序失败 2022-01-01