operator new (Visual Studio Supplementary Reference)

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

The function called by a new-expression to allocate storage for individual objects.

void * operator new( 
   unsigned int count 
);

Parameters

  • count
    The number of bytes of storage to be allocated.

Return Value

A pointer to the lowest byte address of the newly-allocated storage.

See Also

Reference

operator new (Visual Studio Supplementary Reference)