allocator_newdel 类

实现一个分配器,该分配器使用 operator delete 来释放内存块,并使用 operator new 来分配内存块。

语法

template <class Type>
class allocator_newdel;

参数

类型
由分配器分配元素类型。

备注

ALLOCATOR_DECL 宏将这个类作为以下语句中的 name 参数进行传递:ALLOCATOR_DECL(CACHE_FREELIST stdext::allocators::max_none), SYNC_DEFAULT, allocator_newdel);

要求

标头:<allocators>

命名空间: stdext

另请参阅

<allocators>