Answers for "what is the naming convention followed for methods in java? given an example"

2

naming conventions methods java

Methods should be verbs, in mixed case with the first letter lowercase, 
with the first letter of each internal word capitalized.
Example:
run();
runFast();
getBackground();
Posted by: Guest on April-24-2021

Code answers related to "what is the naming convention followed for methods in java? given an example"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language