What is garbage collection in Java, and how can it be used ?
Answers were Sorted based on User's Feedback
Answer / pranab dutta
When a Java object becomes unreachable to the program, then
it is subjected to garbage collection. The main use of
garbage collection is to identify and discard objects that
are no longer needed by a program so that their resources
can be reclaimed and reused.
Is This Answer Correct ? | 324 Yes | 35 No |
Answer / janet
When an object is no longer referred to by any
variable,java automatically reclaims memory used by that
object.This is known as garbage collection.
System.gc() method may be used to call it explicitly.
Is This Answer Correct ? | 182 Yes | 34 No |
Answer / devarathnam c,kotagudibanda(po
Hi...
GarbageCollector: Whenever an object is no longer used in
the program at that time the garbage collector reclaims the
memory of an object.It is controlled by the JVM ,The JVM
runs periadically by using "mark" and "sweep"algorithms.
Instead of "destructor" in c++ , java supports garbage
collector.
Is This Answer Correct ? | 84 Yes | 21 No |
Answer / ms
garbage collecton in java means, if a particular object in
a program is not being refered since long time then it will
be automatically deleted with the help of garbage collector
so that some amount of memory is saved.we can explicitily
call it by adding a method system.gc()in the program.so in
this case there is no need to use'destructor'to destroy the
objects.
Is This Answer Correct ? | 70 Yes | 17 No |
Answer / veer
When an object has of no use in a program then it has to be
discarded to free the occupied space by it so that other
object can fill the space.That is what Garbaghe collection
is.
Is This Answer Correct ? | 43 Yes | 13 No |
Answer / syed sikandar bakht
when an object in memory is no longer refered by a variable,
the garbage collector automatically move it to garbage
collection.
instead of calling destructor JVM do it automatically, as we
use destructor in c++ to destroy the object.
Is This Answer Correct ? | 20 Yes | 6 No |
Garbage collection is a thread, that runs to reclaim the
memory by destroying objects which object is cannot be
referenced anymore.
Deleting Dynamically created objects from the memory.
Finalize method used to achieve garbage collection.
By using Runtime.gc() or System.gc() the object will be
garbage collected.
Is This Answer Correct ? | 30 Yes | 16 No |
Answer / sangeetha
when we remove the object that it will be stored particular
memory space these are known as garbage collection.
It is finalize method is used in the garbage collection.
Is This Answer Correct ? | 32 Yes | 20 No |
Answer / ravi
when there are no refrences to an object,means that it is
not in use anymore.so the JVM marks it for garbage
collection ,which is basically a process of taking back the
resources from the object which was given to it earlier.
Is This Answer Correct ? | 14 Yes | 2 No |
Answer / dsr
when ever object scope is over at that the object memory
removed.This is nown as garbageCollection.
Is This Answer Correct ? | 19 Yes | 11 No |
How can you debug the Java code?
How to disable caching on back button of the browser?
Is integer a class?
What is an argument java?
When wait(), notify(), notifyall() methods are called does it releases the lock or holds the acquired lock?
How to print a statement without using semicolan in java
What is a super class and how super class be called?
What is the static method?
What does n mean in java?
Give a practical example of singleton class usage?
How can u create the Object of class Without using "New" opertor?
How many statements can be created with one connection in jdbc?