Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

JAVA Guide

Naming Conventions

Class and Interface

  • They starts with Capitals letter. Example : Calculator, Runable, Object.

Variables and Methods

  • Starts with small letter.

Example : marks, show(), getPrice(), setPrice() etc.

Constants

  • The whole word is in Capitals.

Example : PI, BRAIN, MY_DATA, RAM, CPU_UTILIZATION etc.