This topic has not yet been rated - Rate this topic

operator new (Developer Notes)

Visual Studio 2005

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


void * operator new( 
   unsigned int count 
);
count

The number of bytes of storage to be allocated.

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

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.