Terminates the currently running Java application. The argument serves as a status code; by convention, a nonzero status code indicates abnormal termination. This method calls the exit method in class Runtime. This method never returns normally. The call System.exit(n) is effectively equivalent to t
(int status)
| 126 | * Runtime.getRuntime().exit(n) |
| 127 | */ |
| 128 | public static native void exit(int status); |
| 129 | |
| 130 | /** |
| 131 | * Runs the garbage collector. |