Section 3: Garbage Collection

  • Recognize the point in a piece of source code at which an object becomes eligible for garbage collection.

Relevant Sections

Read subsections “Reachable References” and “Facilitating Garbage Collection” in Section 8.1.

Study Notes

An object becomes eligible for garbage collection when it has no references from running code. If a reference is reassigned, the object previously denoted by the reference now has one less reference, increasing this object's chances of becoming eligible for garbage collection. It is important to be able to identify where in the code an object will have no references during execution.

Get Programmer's Guide to Java™ Certification, A: A Comprehensive Primer, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.