Garbage Collection

From Suhrid.net Wiki
Revision as of 04:35, 15 August 2011 by Suhridk (talk | contribs) (Created page with "== Introduction == * All GC involves in making sure the heap doesnt run out of space. * Purpose of the GC is to find and delete objects that cannot be reached. * An object is el...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Introduction

  • All GC involves in making sure the heap doesnt run out of space.
  • Purpose of the GC is to find and delete objects that cannot be reached.
  • An object is eligible to be garbage collected when no live thread can access it.