+1 vote
in JAVA by
Explain Java Coding Standards for classes or Java coding conventions for classes?

Sun has created Java Coding standards or Java Coding Conventions . It is recommended highly to follow

java coding standards.

Classnames should start with uppercase letter. Classnames names should be nouns. If Class name is of

multiple words then the first letter of inner word must be capital letter.

Ex : Employee, EmployeeDetails, ArrayList, TreeSet, HashSet

1 Answer

0 votes
by

Sun has created Java Coding standards or Java Coding Conventions . It is recommended highly to follow

java coding standards.

Classnames should start with uppercase letter. Classnames names should be nouns. If Class name is of

multiple words then the first letter of inner word must be capital letter.

Ex : Employee, EmployeeDetails, ArrayList, TreeSet, HashSet

...