共用方式為


rts_alloc::allocate

配置記憶體的區塊。

void *allocate(std::size_t _Count);

參數

參數

描述

_Count

要配置的陣列中的項目數。

傳回值

若要配置的物件變數的指標。

備註

成員函式會傳回caches[_IDX].allocate(_Count),其中索引_IDX要求的區塊大小由_Count,或者,如果_Count是太大,它會傳回operator new(_Count)。cache,用來表示快取物件。

需求

標頭: <allocators>

Namespace: stdext

請參閱

參考

rts_alloc Class