How to make Java objects eligible for garbage collection?
An object becomes eligible for garbage collection when it becomes unreachable by any code. Two way can make this happened:
- Explicitly set the reference variable that refers to the object to null.
- Reassign the reference variable that points to the object to refer to other object.
For example,
class Program {
public static void main(String[] args) {
X x1 = new X("1");
X x2 = new X("2");
x1 = null; // X("1") object is eligible for collection after this
x2 = new Y(); // X("2") object is eligible for collection after this
}
}
Most Recent java Faqs
Most Viewed java Faqs
- How to use HttpURLConnection POST data to web server?
- What is runtime polymorphism in Java?
- How to add BASIC Authentication into HttpURLConnection?
- What is String literal pool?
- Can the run() method be called directly to start a thread?
- How to read input from console (keyboard) in Java?
- What does Class.forname method do?