문제

Is it the case that only if a class has a finalize() method, only then that object, when unreachable, is added to the finalization queue? Reason being I was going through this link and in the category Avoid Memory-Retention Problems When Subclassing it says that a large array is not available for garbage collection till finalize() is called. But my point is that even if I don't write a finalize() method, still it had to wait for the object to be deque'd in the finalization queue.

도움이 되었습니까?

해결책

Is it the case that only if a class has a finalize() method, only then that object, when unreachable, is added to the finalization queue?

Almost. It says that objects whose superclasses have implemented "finalize" are added to the finalization queue when the garbage collector finds them unreachable.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top