Can an unreachable object become reachable again?

Answers were Sorted based on User's Feedback



Can an unreachable object become reachable again?..

Answer / shadow

An unreachable object may become reachable again. This can
happen when the object's finalize() method is invoked and
the object performs an operation which causes it to become
accessible to reachable objects....!

CHHAYA

Is This Answer Correct ?    10 Yes 1 No

Can an unreachable object become reachable again?..

Answer / javadreams

String objects are immutable and are placed in a different
pool called as String constant pool. So whenever users try
to create new string object jvm looks out for this pool and
returns the reference for the string object.

So this could be one of the means of getting access to
unreachable string object .

Is This Answer Correct ?    1 Yes 0 No

Can an unreachable object become reachable again?..

Answer / desai.ankita0422@gmail.com

never

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

what happens when a thread cannot acquire a lock on an object? : Java thread

0 Answers  


Can we store variables in local blocks?

0 Answers   Global Logic,


Thanks A.jyotsna, Can u tell me differnce between abstract class and interface vikash

4 Answers  


What is a Wrapper class?

14 Answers  


Is null a string in java?

0 Answers  






What is boolean in java?

0 Answers  


What is double in java?

0 Answers  


How can you take string into InputStream?

3 Answers  


Why use string handling in Java?

0 Answers   HCL,


Explain inner classes ?

0 Answers  


What are the changes in java.io in java 8 ?

0 Answers  


What is the use of optional ?

0 Answers  


Categories