How to send a request to garbage collector?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
How task's priority is used in scheduling?
What state does a thread enter when it terminates its processing?
what is the proxy pattern?
Is “abc” a primitive value?
What are the states associated in the thread?
how can u cal servlet from java?
What are the types of scaling?
What is aop(assepct oriented programing)?
How is serialization used generally ?
i have a 1000 objects in data base i need to display those in jsp's how can i retrive those objects in jsp. (consider the performance issue)
What do you mean by Socket Programming?
Is System.err.println(""Statement"); is execute the output on console . Example: System.err.println("Hello JAVA");