Sun . Java . Code Library . e*

exitForm (java.awt.event.WindowEvent   WindowEvent) {
System.exit( 0 );
}

{ ... // exponential
Math.exp
Math.log
... }

{ ... // system exits with 0 for successfully ended, otherwise non zero
System.exit(0); // main() was called at the beginning to start
// batch files, and shell scripts can test THIS exit code
... }
 

{ ... // virtual machine exits with indicator, java.lang.System
static void exit (int status)
... }