How to send a request to garbage collector?

Answers were Sorted based on User's Feedback



How to send a request to garbage collector?..

Answer / anjum rehbar khan

Yes we can send arequest to garbage collection by writing a
simple line of code:

System.gc();

OR

Runtime.gc();

But it is simply a request not a order to JVM
because Garbage collection is JVM dependent

Is This Answer Correct ?    8 Yes 0 No

How to send a request to garbage collector?..

Answer / uv

As far as I know,it is not required to call the garbage
collector.
It automatically and periodically removes the unused
objects by an algorithm known as "Mark and Sweep".

However, if we intentionally want to call it then the above
suggestions are perfect.
Anyone who feels that it is incorrect, please feel free to
correct me.

Is This Answer Correct ?    4 Yes 0 No

How to send a request to garbage collector?..

Answer / chinna

It's Runtime.getRuntime().gc()

Is This Answer Correct ?    3 Yes 0 No

How to send a request to garbage collector?..

Answer / ashwani maddeshiya

static void gc() // Requests GC to run
static void runFinalization() // Requests finalizers to run

OR
mport java.util.*;

class GarbageCollectionDemo
{
public static void main(String s[]) throws Exception
{
// Get runtime environment
Runtime rt = Runtime.getRuntime();
System.out.println("Free memory before Garbage Collection = "+rt.freeMemory());

// Apply garbage collection
rt.gc();
System.out.println("Free memory after Garbage Collection = "+rt.freeMemory());
}
}

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

What are the different types of methodologies?

0 Answers  


Can a class extends itself in java?

0 Answers  


What is the use of accept () method in java?

0 Answers  


What are "class access modifiers" in Java?

0 Answers   Genpact,


What is classes in java?

0 Answers  






Hi i am creating desktop application in that i want calling to mobile number. i have java telephone api (JTAPI) but i dont understand how it configure & use plese help me

0 Answers  


What is string args [] in java?

0 Answers  


Does list maintain insertion order java?

0 Answers  


Can we overload the constructors?

0 Answers  


whats the difference between == and .equal ?

10 Answers   Cisco,


If a method is declared as protected, where may the method be accessed?

0 Answers  


Why is java so popular?

0 Answers  


Categories