Rule of naming for package & class name in java

 


import frontend.FrontEnd; 

            (1)        (2) 

(Rules)

         (1) package name - the name starting with a low character, 

          (2) Class name - by using camel character. starting with an upper letter, and need to input another upper letter in the middle of a name 

Comments