WebGlossary.info
Garbage collection
- A form of automatic memory management. The garbage collector, or just collector, attempts to reclaim garbage, or memory occupied by objects that are no longer in use by the program. Garbage collection is essentially the opposite of manual memory management, which requires the programmer to specify which objects to deallocate and return to the memory system. However, many systems use a combination of approaches, including other techniques such as stack allocation and region inference. ← Wikipedia
- Previous term: Gang of Four
- Next term: Garbage in, garbage out
- Random term: TMTO