1.

What Is Garbage Collector?

Answer»

The garbage collector is a COMPONENT of Java virtual machine which is responsible for reclaiming memory from DEAD objects. It's one of the key components and allows an application developer to focus on application development RATHER than doing memory management. Some of the popular garbage collectors are a Concurrent Mark-Sweep garbage collector and G1 garbage collector in RECENT times.

The garbage collector is a component of Java virtual machine which is responsible for reclaiming memory from dead objects. It's one of the key components and allows an application developer to focus on application development rather than doing memory management. Some of the popular garbage collectors are a Concurrent Mark-Sweep garbage collector and G1 garbage collector in recent times.



Discussion

No Comment Found