rspec/rules/S1113/java/rule.adoc

28 lines
874 B
Plaintext
Raw Normal View History

The ``++Object.finalize()++`` method is called on an object by the garbage collector when it determines that there are no more references to the object. But there is absolutely no warranty that this method will be called AS SOON AS the last references to the object are removed. It can be few microseconds to few minutes later. So when system resources need to be disposed by an object, it's better to not rely on this asynchronous mechanism to dispose them.
== Noncompliant Code Example
----
public class MyClass {
...
protected void finalize() {
releaseSomeResources(); // Noncompliant
}
...
}
----
== See
* https://wiki.sei.cmu.edu/confluence/x/4jZGBQ[CERT, MET12-J.] - Do not use finalizers
ifdef::env-github,rspecator-view[]
== Comments And Links
(visible only on this page)
include::comments-and-links.adoc[]
endif::env-github,rspecator-view[]