What does memory leak show in Delphi?

What does memory leak show in Delphi?



- Memory leak shows that the system is using more and more memory to assign to objects that are no longer active.

- This is the case when the object is unused and it is not getting deleted so in this case the memory doesn’t get freed.

- The program that doesn’t delete the unused object, in this case it uses more and more memory as it runs.

- Memory leak happens in the case of discarding unwanted blocks of memory.

- This situation doesn’t help the system and it uses more and more resources to slow down the system and due to this the system hangs up.
Post your comment