Automatic Selection of Application Specific Garbage Collectors
Nitan Kotwal
Broschiertes Buch

Automatic Selection of Application Specific Garbage Collectors

Versandkostenfrei!
Versandfertig in 6-10 Tagen
47,99 €
inkl. MwSt.
PAYBACK Punkte
24 °P sammeln!
Garbage collection is the process of automatic memory reclamation or automatic storage reclamation. In this process those objects that are not referenced from any live object or from root are collected. These objects are known as dead objects. The memory occupied by these dead objects is collected and added to the pool of free memory for further allocation to new objects. The program thread which performs these tasks is known as Garbage collector (GC). Several algorithms were proposed for garbage collection. Each one has its own niche in terms of garbage collection. The main objective of each ...