Can an object be garbage collected while it is still
reachable?
Answers were Sorted based on User's Feedback
Answer / ravikiran(aptech mumbai)
yes...all the garbage ollection things depends on the
garbage collector of JVM
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / sudheer
Garbage collector is a low priority thread. We cant order to delete an object. When the object has no references and object which are out of scope will be deleted by the garbage collector to free the memory. So when an object is reachable it cant be garbage collected.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / janet
Once an object is garbage collected, it ceases to exist. It
can no longer become reachable again.
| Is This Answer Correct ? | 0 Yes | 3 No |
What does regex mean?
Difference between Choice and a List?
What is an 8 bit word?
Can java hashmap have duplicate keys?
What happens if an exception is not caught?
What are data types in oop?
What are the types of inner classes (non-static nested class) used in java?
What are the important features of Java 9 release?
How do u provide security in java
Why null value is used in string?
What is class variable java?
Difference between prefix and postfix forms of the ++operator?