Placement new

#include <new> // 要使用"placement new",必须包含这个头文件

#include "Fred.h" // class Fred声明

void someCode()
{
char memory[sizeof(Fred)]; // Line #1
void* place = memory; // Line #2

Fred* f = new(place) Fred(); // Line #3 (see "DANGER" below)
// The pointers f and place will be equal

 

f->~Fred(); // Explicitly call the destructor for the placed object
...
}

唯一可以显示调用析构函数的地方

1.在特定的地址上创建类,必须显示调用析构函数。

2.预先申请的空间plaace必须足够大。

3.place指向的空间必须依照类对象类型进行对齐,编译器或运行时系统都不会进行检查。

你可能感兴趣的:(Class,include,编译器,destructor,Pointers)