Garbage Collection
- The garbage collector implements unlimited object lifetime by recycling
the space occupied by objects which are no more reachable.
- Typically Mark and Sweep, but also:
- Stop and Copy.
- Generational garbage collectors.
- Non stop garbage collectors.
- Compaction of the memory heap.
- Finalization: alarms the application that an object is no more reachable.
- 6 -