Naming Convention In Java-camel case example
Naming Conventions are rules to be followed by giving a name to the identifier.Identifiers are program elements(such as class,object,variable,method so on ).For building software you should follow this rule to make your code look good, more efficient and more readble.Java has certain rules for naming identifier. This are given below
Digit, letters, underscore or currency symbols(£, €, $) are allowed
- An identifier name must not be a reserved words or keywords
- Java follows camelCase rule
what is camelcase rule?
Class name —> should begin with a capital letter(In a single word)
If it is multiple words, the first letter of every word begins with a capital letter.
Ex :- class Student --->(single word)
class StudentName --->(multiple word)
Method name —> first letter of first word lower case letter(single word)
If it is multiple words, the first letter of first word is lowercase and first letter of every word should be capital letter
Ex :- void read() --->(single word)
void readName() --->(multiple word)
objective type Q&A
- number ,Number ,sum _$, averages are legal identifier
- 44sum ,all/clear ,end-to-end are illegal identifier
.
Comments
Post a Comment