class naming standards
- class name should be noun.
- If class name contains one word then first letter starts with upper case letter
- If class name contains more than one word then first letter starts with upper case letter, remaining words also starts with upper case letter.
- Tip : Should not give space between the words while naming to class.
Examples :
Pre-defined class names:
- String
- StringBuffer
- StringBuilder
- ArrayList
- LinkedList
User defined class names:
- Student
- Person
- Employee
Thanks for your time.
Nireekshan