gpt4 book ai didi

c++ - “placement new”有什么用?

转载 作者:行者123 更新时间:2023-12-02 10:33:22 25 4
gpt4 key购买 nike

这里有没有人使用过C++的“placement new”?如果是这样,那是为了什么?在我看来,它仅在内存映射的硬件上有用。

最佳答案

新的Placement允许您在已分配的内存中构造一个对象。
当您需要构造一个对象的多个实例时,您可能需要执行此操作以进行优化,并且在每次需要一个新实例时不重新分配内存会更快。取而代之的是,即使您不想一次使用所有内存,对可以容纳多个对象的一块内存执行单个分配可能更有效。
DevX给出了good example:

Standard C++ also supports placementnew operator, which constructs anobject on a pre-allocated buffer. Thisis useful when building a memory pool,a garbage collector or simply whenperformance and exception safety areparamount (there's no danger ofallocation failure since the memoryhas already been allocated, andconstructing an object on apre-allocated buffer takes less time):

char *buf  = new char[sizeof(string)]; // pre-allocated buffer
string *p = new (buf) string("hi"); // placement new
string *q = new string("hi"); // ordinary heap allocation
您可能还想确保关键代码的某些部分(例如,在起搏器执行的代码中)没有分配失败。在这种情况下,您可能希望先分配内存,然后在关键部分中使用new放置。
重新分配刊登位置
您不应该释放使用内存缓冲区的每个对象。相反,您应该只删除[]原始缓冲区。然后,您必须手动调用类的析构函数。有关此的好的建议,请参见Stroustrup的FAQ,网址为: Is there a "placement delete"

关于c++ - “placement new”有什么用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61422849/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com