CHeapPtr::Reallocate
更新 : 2007 年 11 月
ヒープにメモリを再割り当てします。
bool Reallocate(
size_t nElements
) throw( );
パラメータ
- nElements
割り当てるメモリ容量を計算するために使用される新しい要素数。
戻り値
メモリが正常に割り当てられた場合は true を返します。それ以外の場合は false を返します。
使用例
// Create a new CHeapPtr object
CHeapPtr <int> myHP;
// Allocate space for 10 integers on the heap
myHP.Allocate(10);
// Resize the allocated memory for 20 integers
myHP.Reallocate(20);
必要条件
ヘッダー : atlalloc.h