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 / bhudeep
Java provides us one method System.gc()to call garbage
collection forcefully.But by calling System.gc() will not
ensure you that the object will be garbage collected.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why java is not 100% object-oriented?
What is the integer of 16?
Write code to implement bubble sort in java?
What is the implementation of destroy method in java. Is it native or java code?
What is object cloning in Java?
What is mnemonic code?
What is default constructors?
What is the concept of multithreading?
What is method reference?
Explain about the interpreter in java?
What is meant by method?
Is arraylist zero based?
Does .length start 0 java?
What are autoboxing and unboxing? When does it occur?
What restrictions are placed on method overriding?