[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Destroy an object and release all memory.
Source position: objects.pp line 256
procedure TObject.Free; |
Free calls the destructor of the object, and releases the memory occupied by the instance of the object.
No checking is performed to see whether self is nil and whether the object is indeed allocated on the heap.
|
Construct (initialize) a new object |
|
|
Destroy an object. |
program ex7; { Program to demonstrate the TObject.Free call } Uses Objects; Var O : PObject; begin // Allocate memory for object. O:=New(PObject,Init); // Free memory of object. O^.free; end.