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 / nilesh bhil

Garbage collector is automatically called by JVM.
But can make the request by calling gc() method on System class as follows.
System.gc();
Note that we are making only request Garbage Collector may
called or may not called.
Garbage Collector is automatically called at two conditions.
1)When CPU is ideal.
2)When huge amount of memory is required.

Is This Answer Correct ?    6 Yes 0 No

How to send a request to garbage collector?..

Answer / viiraj

Garbage collection is implicitly accomplished with
termination of instance.
Wee dont need to explicitly request.

Is This Answer Correct ?    4 Yes 2 No

How to send a request to garbage collector?..

Answer / manikandan [ gtec,vellore ]

we can't force a garbage collection.it automatically runs
when system runs out of memory.

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More Advanced Java Interview Questions

Explain what is synchronization?

0 Answers  


Write a program on RMI and JDBC using StoredProcedure?

1 Answers  


What is mdb and what is the special feature of that?

0 Answers  


Why use a datasource when you can directly specify a connection details? (in a J2EE application)

1 Answers  


What if the static modifier is removed from the signature of the main method?

0 Answers  


Can we have more than one action servlet?

7 Answers   HP,


What is difference RMI registry and OSAgent?

1 Answers  


Difference between loadclass and class.forname?

0 Answers  


What is the argument type of a programs main() method?

0 Answers  


What is Stream and Types?

2 Answers   Patni,


What is runnable?

2 Answers  


What is the difference between Process and Threads?

19 Answers  


Categories