ways of making objects eligible for garbage collection in Java?

What are the possible ways of making objects eligible for garbage collection (GC) in Java?

Objects in Java become eligible for garbage collection when there are no references to them. The Java Virtual Machine (JVM) has a garbage collector that automatically identifies and reclaims memory occupied by objects that are no longer reachable. Here are some common ways to make objects eligible for garbage collection:

1. Setting References to Null:

Explicitly setting a reference to null means that the object it was pointing to is no longer accessible and becomes eligible for garbage collection.

Example
/*
 * Author: Zameer Ali Mohil
 * */
MyClass obj = new MyClass();
// ...
obj = null; // obj is now eligible for garbage collection

2. Method Scope:

Objects created within a method have local scope. Once the method completes execution, local variables are no longer accessible, and the objects they reference become eligible for garbage collection.

Example
/*
 * Author: Zameer Ali Mohil
 * */
void someMethod() {
    MyClass localObj = new MyClass();
    // ...
} // localObj is no longer accessible, and eligible for garbage collection

3. Reassigning Reference:

If a reference is reassigned to another object, the original object becomes unreachable and is eligible for garbage collection.

Example
/*
 * Author: Zameer Ali Mohil
 * */
MyClass obj1 = new MyClass();
MyClass obj2 = new MyClass();
// ...
obj1 = obj2; // obj1 no longer references the original object and is eligible for garbage collection

4. Exiting Scope:

When a reference goes out of scope (e.g., local variables in methods or block scope), the associated objects become unreachable and are eligible for garbage collection.

Example
/*
 * Author: Zameer Ali Mohil
 * */
{
    MyClass obj = new MyClass();
} // obj is no longer accessible and eligible for garbage collection

5. Circular References:

Circular references, where objects reference each other in a cycle, can lead to memory leaks. If a group of objects is not reachable from the root of the object graph, they become eligible for garbage collection even if they reference each other.

Example
/*
 * Author: Zameer Ali Mohil
 * */
class Node {
    Node next;
}

Node node1 = new Node();
Node node2 = new Node();
node1.next = node2;
node2.next = node1; // Circular reference
// ...

// If node1 and node2 are no longer reachable, they are eligible for garbage collection

6. Weak References:

Using weak references allows objects to be eligible for garbage collection even if they have references. Weak references are typically used in scenarios where the object’s existence is tied to some other resource.

Example
/*
 * Author: Zameer Ali Mohil
 * */
import java.lang.ref.WeakReference;

MyClass obj = new MyClass();
WeakReference<MyClass> weakRef = new WeakReference<>(obj);
obj = null; // obj is still weakly referenced, but eligible for garbage collection

It’s important to note that the decision to perform garbage collection is up to the JVM, and it may not occur immediately after an object becomes unreachable. The JVM’s garbage collector runs periodically and reclaims memory occupied by unreachable objects.

Leave a Reply

Your email address will not be published. Required fields are marked *