Java Handbook: Primaru
Java Handbook: Primaru
Handbook
Primaru
Content
I. Java
Overview…………………………………………………….1
Java Overview
Java is -
● Object Oriented − In Java, everything is an Object. Java can be
easily extended since it is based on the Object model.
the internet.
Basic
Syntax
Java is a general-purpose computer programming language that is
concurrent, class-based, object-oriented and specifically designed to
have as few implementation dependencies as possible.
● Class Names − For all class names the first letter should be in Upper
Case. If several words are used to form a name of the class, each inner
word's first letter should be in Upper Case.
● Method Names − All method names should start with a Lower Case
letter. If several words are used to form the name of the method, then each
inner word's first letter should be in Upper Case.
4
Example: public void myMethodName()
● Program File Name − Name of the program file should exactly
match the class name.
● identifiers/keywords/modifiers