Java Data Type Tutorial - 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.

/* ww  w .ja v  a2 s .  c  o m*/


public class Main {

  public static void main(String[] args) {


      Runtime.getRuntime().runFinalizersOnExit(true);



  }
}