The return statement immediately terminates the method in which it is executed.
public class Main {
public static void main(String args[]) {
boolean t = true;
System.out.println("Before return");
if (t)
return; // return to caller
System.out.println("after");
}
}
The output from this program is shown here:
Before return