operator delete(CRT)

 

The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.

The latest version of this topic can be found at operator delete(CRT).

Frees allocated block.

Syntax

  
      void __cdecl operator delete[](  
   void * object  
);  
void __cdecl operator delete[](  
   void * object,   
   void * memory  
) throw();  
void __cdecl operator delete[](  
   void * object,   
   const std::nothrow_t&  
) throw();  

Parameters

memory
The memory location being freed.

object
A pointer to the object being deleted.

Remarks

This form of operator delete is known as vector delete, in contrast to the scalar delete form (operator delete).

operator delete[] frees memory allocated by operator new[].

The first form of this operator is known as the nonplacement form. The second and third forms of this operator will commonly not be called from code but exist to give the compiler a matching delete to call when a placement new fails.

The first form of the operator is defined by the compiler and does not require new.h to be included in your program.

With the exception of throwing or no-throwing behavior, the CRT operator delete[] behaves like operator delete[] in the Standard C++ Library.

Requirements

Routine Required header
delete[] <new.h>

For additional compatibility information, see Compatibility in the Introduction.

Libraries

All versions of the C run-time libraries.

Example

See operator new[] for examples of using operator delete.

See Also

Memory Allocation