In this post, we’ll use the DisposeOf method or DelphiVCL.Application.DisposeOf forces the execution of the destructor code in an object. Learning how to use DIsposeOf will allow you to easily build GUIs with Python Coding Software.
After the DisposeOf method is called, the object is placed in a special state, the Disposed state. This means that the destructor is not called again if DisposeOf is called again, or if the reference count reaches zero (the moment in which the memory is released).
Table of Contents
Are there any things to be aware of when using the DisposeOf method?
The behavior of DisposeOf differs for the two generations of Delphi compilers:
- On the Delphi desktop compilers (DCC32, DCC64, DCCOSX), the effect of calling DisposeOf remains the same, as it calls Free.
- On the Delphi mobile compilers (DCCIOS32, DCCIOSARM), the destructor code is executed at the same time as for the Delphi desktop compilers, but the memory is managed by the Automatic Reference Counting mechanism.
Let’s browse all the properties and methods of the DelphiVCL.Application.DisposeOf using dir() command:
1 2 3 |
import DelphiVCL dir(DelphiVCL.Application.DisposeOf) |
See the responses in our Windows command prompt:
You can also read short information about the DelphiVCL.Application.DisposeOf using the print() command:
1 2 |
print(DelphiVCL.Application.DisposeOf) print(DelphiVCL.Application.DisposeOf.__doc__) |
See the responses in our Windows command prompt:
Check out DelphiVCL which easily allows you to build GUIs for Windows using Python.