How GC (Garbage Collector) knows the objects reference is
unused.Whether GC removes the unused object Parmanently or
it maintains something.
Answers were Sorted based on User's Feedback
Answer / devarathnam.c, kotagudibanda,k
Hi,
The Garbage Collector(GC)will be always under the control
of JVM, So JVM periodically runs the GC. It uses "sweep"
and "mark" algorithms to identify the unused objects in the
application. You don't bother about GC, JVM will take of it.
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / balamurugan
it checks whenever we will not used the objects in our
program then jvm checked with forward referenceduse help of
heap memory. then gb removes the un used objects
| Is This Answer Correct ? | 1 Yes | 0 No |
Tell me the difference between an applet and a Japplet?
If I have 1000 objects and my requirement is to sort them quickly, then which collection would you recommend and why?
What is * argv?
What is finalize method?
Howmany address lines are required to addressing 1 MB memory?
8 Answers Beatroot Technologies, CSC, HCL, Hexaware, IBM,
What are the characteristics provided in jdk1.6 apart from other versions?
What is static and a non-static inner class?
In which language JVM (Java Virtual Machine) is implemented
why operator overloading is removed in java?
What are thread local variables?
What is the % operator?
Why we do exception handling in java and how many types of exceptions are there?