When is an object in the mean to garbage collection?
Answers were Sorted based on User's Feedback
Answer / chandrarekha
whenever the object goes out of scope or when it is no
longer being referenced, in such cases it can be a garbage
object. Garbage collection is implicitly invoked whenever
resources have to be allocated to the new objects that are
created and approach to detect a garbage object can be done
through reference-counting collectors,tracing
collectors,compacting collectors. The garbage collectors
can also be explicitly invoked by gc() supported by JVM
which is in the java.lang package
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / sathya
When the object is no longer referenced, its eligible for
Garbage Collection
| Is This Answer Correct ? | 0 Yes | 1 No |
Can singleton class be serialized?
What are field variable and local variable?
What happens if an exception is throws from an object's destructor?
What methodology can be employed to locate substrings inside a string?
Give us the name of the list layoutmanagers in java?
Can I declare a class as private?
How to declare unique ArrayList ?
What is Java Package and which package is imported by default?
Is passing by reference faster?
Why is boolean important?
What languages are pass by reference?
What is the purpose of main function in java?