java methods return code example
Example 1: what is return method in java
Return method is for to be able to
continue to work what method retrieves.
For example if it returns a String.
This means that you can use the returned
value in your code for
further processing.I guess good examples
of such methods are "getters".
Example 2: how to create a function that returns in java
// a method for computing the area of the rectangle
public int getArea() {
return width * height;
}