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

Is it possible to write method inside method

4 Answers   L&T,


How do you compare two strings lexicographically?

0 Answers  


What is member in java?

0 Answers  


What do you mean by formatting?

0 Answers  


why java does not have operator overloading?

2 Answers  






How to prevent to create multiple objects of a java class?

3 Answers   ASD Lab, TCS,


What is an abstract class and abstract method?

5 Answers  


What does the “static” keyword mean?

0 Answers  


What is singleton class in ruby?

0 Answers  


Which non-unicode letter characters may be used as the first character of an identifier?

0 Answers  


What is an example of a conditional statement?

0 Answers  


Why main method is called first in java?

0 Answers  


Categories