4.9.The return Statement
The return statement is the final branching statement. The return statement terminates the present method, and control flow returns to the point at which the method was invoked. There are two forms of the return statement: one that returns a value and one that does not. Put the value (or an expression that calculates the value) after the return keyword to return.
return ++count;
The returned value must be of the same data type as the method’s declared return value. Use the return form that does not return a value when a method is declared void.
return;
The lecture on Classes and Objects will provide a comprehensive overview of the process of writing methods.