Showing posts with label Absolute Java Chapter 4. Show all posts
Showing posts with label Absolute Java Chapter 4. Show all posts

AKA Method Calls.

AKA Method Calls.



Answer: An invocation of a method that returns a value can be used as an expression anyplace that a value of the typeReturned can be used:typeReturned tRVariable; or tRVariable = objectName.methodName();

A return statement

A return statement



Answer: specifies the value returned and ends the method invocation:return Expression;