C++
delete
The delete operator calls the destructor of the given argument, and returns memory allocated by new back to the heap.After calling delete the memory object pointed to is invalid and should no longer be used.
Syntax:delete variable;
Example:int *p_var = nullptr; // new pointer declared
p_var = new int; // memory dynamically allocated
/* .......
other code
........*/
delete p_var; // memory freed up
p_var = nullptr;
Content
License.
All information of this service is derived from the free sources and is provided solely in the form of quotations.
This service provides information and interfaces solely for the familiarization (not ownership) and under the "as is" condition.
Copyright 2016 © ELTASK.COM. All rights reserved.
Site is optimized for mobile devices.
Downloads: 506 / 158776809. Delta: 0.00233 с