InterviewSolution
Saved Bookmarks
| 1. |
How To Enable /disable Call Of Finalize() Method Of Exit Of Application? |
|
Answer» Runtime.getRuntime().runFinalizersOnExit(boolean VALUE). PASSING the boolean value true and false will ENABLE or DISABLE the FINALIZE() call. Runtime.getRuntime().runFinalizersOnExit(boolean value). passing the boolean value true and false will enable or disable the finalize() call. |
|