Java Runtime .runFinalizersOnExit ( boolean value)
Syntax
Runtime.runFinalizersOnExit(boolean value) has the following syntax.
@Deprecated public static void runFinalizersOnExit(boolean value)
Example
In the following code shows how to use Runtime.runFinalizersOnExit(boolean value) method.
/*from w w w .ja va 2s .c om*/
public class Main {
public static void main(String[] args) {
Runtime.getRuntime().runFinalizersOnExit(true);
}
}