+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

Related questions

+1 vote
asked Jun 17, 2019 in JAVA by reins.robin
+1 vote
asked Jun 17, 2019 in JAVA by reins.robin
...