<<< static method, cont | Index | >>> |
Calling static method in the same class
methodName([argumentList])
A call statement with no arguments
printWelcomeMessage();
A call statement that passes two arguments
double grade = calculateGrade( maxPoints, studentScore );
<<< static method, cont | Index | >>> |