The return statement is used to immediately return control from a called method to the calling method.
The syntax of the return statement is as follows:
return;
or
return expression;
The first form of return statement is used to simply transfer control from the called method to the calling method. The second form returns control as well as returns a value to the calling method as specified by the expression following the return statement.
The syntax of the return statement is as follows:
return;
or
return expression;
The first form of return statement is used to simply transfer control from the called method to the calling method. The second form returns control as well as returns a value to the calling method as specified by the expression following the return statement.
No comments:
Post a Comment