exit out of main method early java code example
Example 1: how to exit a java program
System.exit(0);
Example 2: how to stop a void java
public void someMethod() {
//... a bunch of code ...
if (someCondition()) {
return; //This exits the method
}
//... otherwise do the following...
}