Is finalizers guaranteed to be called in Java? If it differs from JVM to JVM, what about the case in Dalvik VM for Android?
|
closed as not a real question by Filip Radelic, Ricardo Lohmann, Frank van Puffelen, Loktar, Jorgesys Dec 21 '12 at 19:07
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
No, they are not guaranteed to be called. Do not rely on finalizers to free up resources. https://www.securecoding.cert.org/confluence/display/java/MET12-J.+Do+not+use+finalizers |
|||||
|
|
|
Here is an excerpt from a java tutorial Object as a Superclass
The last paragraph is the important one. |
|||
|
|
|
Finalizers are just something to be guaranteed to be execute before the instances are going to be reclaimed. I am sure it obeys the same rule on Dalvik VM. Besides that, even the finalizers finally been called, there were executed on unpredicatable point, and in vm specific way, so you'd better just use it as safe net. Before JDK 7 the only way is to export explicit resource releasing method for your class and call them explicitly when want to ensure the resources been released. Try-with-resources can relieve you from the situation with JDK7. Autoclose shou |
|||
|
|