public class Garbage
{
int a=0;
public void add()
{
int c=10+20;
System.out.println(c);
System.out.println(a);
}
public static void main(String args[])
{
Garbage obj=new Garbage();
System.gc();
System.out.println("Garbage Collected");
obj.add();
}
}
Above is a code in java used for garbage collection. object
obj has been created for the class Garbage and system.gc
method is called. Then using that object add method is
called.System.gc method if called the obj should be garbage
collected?
Answer Posted / namita
Maverickhari,
Garbage collector is system created thread which runs
automatically.
We are not sure when the garbage collection is going to
happen. this totally depends upon the JVM. Like connection
pool all the the objects are created in pool JVM will check
if there is no free memory in pool then it searches for the
objects which are no longer in use and will garbage collect
that and allocate to some other object.
hope this will clear
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Define max and min heap, also the search time of heap.
Is cout buffered?
Variable of the boolean type is automatically initialized as?
Is Java a dying language?
How are observer and observable used in java programming?
What is contract between hashcode and equal method?
Does java return by reference?
What do you mean by an object in java?
How to restrict a member of a class from inheriting by its sub classes?
Is ruby built on java?
Can a private method of a superclass be declared within a subclass?
What are basic keywords?
How to reverse a string in java?
What is a boolean flag in java?
How do you sort an array in java?