What is garbage collection in Java, and how can it be used ?
Answer Posted / prashant srivastava the great
The JVM's heap stores all objects created by an executing
Java program. Objects are created by Java's "new" operator,
and memory for new objects is allocated on the heap at run
time. Garbage collection is the process of automatically
freeing objects that are no longer referenced by the
program. This frees the programmer from having to keep track
of when to free allocated memory, thereby preventing many
potential bugs and headaches.
The name "garbage collection" implies that objects that are
no longer needed by the program are "garbage" and can be
thrown away. A more accurate and up-to-date metaphor might
be "memory recycling." When an object is no longer
referenced by the program, the heap space it occupies must
be recycled so that the space is available for subsequent
new objects. The garbage collector must somehow determine
which objects are no longer referenced by the program and
make available the heap space occupied by such unreferenced
objects. In the process of freeing unreferenced objects, the
garbage collector must run any finalizers of objects being
freed.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Do we have pointers in java?
Is array synchronized in java?
What is the difference between notify and notifyall method?
What is the difference between char and char *?
What are adapter classes?
Convert a BST into a DLL and DLL to BST in place.
What do you mean by order of precedence and associativity?
What is the Scope of Static Variable?
What is the difference between call by reference and call by pointer?
What is difference between pointer and reference?
I want to persist data of objects for later use. What is the best approach to do so?
Why 1 is not a prime number?
Can a class have multiple subclasses?
What is volatile data type?
What do you meant by active and passive objects?