Return Values
18
Return Values
When methods are specified with return value other than “void”
Example
int count ( int increment){ internalCounter = internalCounter + increment; // Short-hand // internalCounter += increment; return internalCounter;}
Previous slide
Back to the first slide
View Graphic Version