Can we declare methods in Java?

Java requires that a method declare the data type of the value that it returns . If a method does not return a value, it must be declared to return void . … Methods use the return operator to return a value. Any method that is not declared void must contain a return statement.

Read more