CHeapPtr::Reallocate

调用此方法分配堆中的内存。

bool Reallocate(
   size_t nElements 
) throw( );

参数

  • nElements
    用于的元素的新的计算大量内存分配。

返回值

返回true;如果成功分配内存,错误在失败。

示例

// 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);   

要求

Header: atlalloc.h

请参见

参考

CHeapPtr选件类

CHeapPtr::Allocate