In this article, we discuss garbage collection, a mechanism that is performed by the garbage collector which reclaims memory that it can prove is not used.
Table of Contents.Introduction.Garbage collection.Garbage collection as a graph traversal problem.Assumptions in garbage collection.Garbage collection algorithms.Summary.ReferencesIntroduction.
Traditional memory management divides memory into 3 categories namely, global data, the stack and the heap.
[image error]
Global data is a collection of ...
Published on January 08, 2022 14:52