how to name a function in java?
Answers
Answered by
1
Answer:
->It should start with the uppercase letter.
->It should be a noun such as Color, Button, System, Thread, etc.
->Use appropriate words, instead of acronyms.
->Example: -
public class Employee
{
//code snippet
}
Similar questions