DEVFYI - Developer Resource - FYI

Can an unreachable object become reachable again?

Java Interview Questions and Answers (part 2)


(Continued from previous question...)

351. Can an unreachable object become reachable again?

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.

(Continued on next question...)

Other Interview Questions