explain java coding standards for classes

Solutions on MaxInterview for explain java coding standards for classes by the best coders in the world

showing results for - "explain java coding standards for classes"
Edoardo
27 Oct 2016
1It is recommended highly to follow java coding standards.
2Classnames should start with uppercase letter. Classnames names should be nouns.
3If Class name is of multiple words then the first letter of inner word must be 
4capital letter.
5Ex : Employee, EmployeeDetails, ArrayList, TreeSet, HashSet