I have a question on SoftReference
s WeakReference
s in Java.
What i know is:
GC uses algorithms to decide whether or not to reclaim a softly reachable object, but always reclaims a weakly reachable object.
Does that mean GC never runs the finalize()
method on WeakReferences
?
Thanks