https://www.tutorialspoint.com/java/java_methods.htm

[ Java – Methods ]

Creating Method

Considering the following example to explain the syntax of a method −

Syntax

public static int methodName(int a, int b) {

// body

}

Here,