Monday 16 May 2016

Overview of Java Syntax

Basic Java Syntax:

Java program is a collection of classes and objects that communicate from invoking(calling) each other's methods.Next discussing java program first understand what is a means of following terms used  i.e Object,Class,Methods and Instance variables.

Object -Objects have states,behaviours and properties.Example:A pencil has states -colour,height,width as well as behaviours -writing.An object is an instance of a class.

Class -A class can be defined as a template/ blue print(or base) that describes the behaviours/states that object of its type support.

Methods -A method is basically a behaviour (what object do).A class can contain many methods.It is in methods where the logics are written, data is manipulated and all the actions are performed(executed).

Instance Variables - Each object has its unique set of instance variables.An object's state is created by the values assigned to these instance variables.

Let us look a First Java Program:

This simple code print the simple message welcome In Java to console window.

public class JavaProgram {

    public static void main(String []args) {
       System.out.println("welcome In Java ");         //  prints welcome In Java
    }
}

Let's look at how to save the file, compile and run the java program.
This simple step is sufficient to understand

Open notepad and add the code as above.

Save the file as: JavaProgram.java.

Open a command prompt window and go to the directory where you saved the class. Assume it's D:\.

Type  javac JavaProgram.java  and press enter to compile your code. If there are no errors in your code, the command prompt will take you to the next line (Assumption : The path variable is set).If displayed error understand it path variable is not set.

Now, type ' java JavaProgram ' to run your program.

You will be able to see ' welcome In Java ' printed on the window.

C:\> javac JavaProgram.java
C:\> java  JavaProgram
welcome In Java                                      Output



Basic Syntax:
 It is very important to keep in mind the following points.

Case Sensitivity - Java is case sensitive, which means identifier Welcome and welcome would have different meaning in Java.

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.

Example class FirstProgram

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.

Example public void myAddMethod()

Program File Name - Name of the program file should exactly match the class name.

When saving the file, you should save it using the class name (Remember Java is case sensitive) and append '.java' to the end of the name (if the file name and the class name do not match your program will not compile).

Example: Assume 'JavaProgram' is the class name. Then the file should be saved as 'JavaProgram.java'

public static void main(String args[]) - Java program processing starts from the main() method which is a mandatory part of every Java program.

Java Identifiers:
All Java components require names.Names used for classes, variables and methods are called identifiers.

In Java, there are several points to remember about identifiers. They are as follows:

All identifiers should begin with a letter (A to Z or a to z), currency character ($) or an underscore (_).

After the first character identifiers can have any combination of characters.

A key word cannot be used as an identifier.

Most importantly identifiers are case sensitive.


Java Modifiers:

Like other languages, it is possible to modify classes, methods, etc., by using modifiers. There are two categories of modifiers:

Access Modifiers: default, public ,protected, private

Non-access Modifiers: final, abstract, strictfp

We will be looking into more details about modifiers in the next section.

Java Variables:
We would see following type of variables in Java:

Local Variables
Class Variables (Static Variables)
Instance Variables (Non-static variables)
Java Arrays:
Arrays are objects that store multiple variables of the same type. However, an array itself is an object on the heap. We will look into how to declare, construct and initialize in the upcoming chapters.

Java Enums:
Enums were introduced in java 5.0. Enums restrict a variable to have one of only a few predefined values.The values in this enumerated list are called enums.

With the use of enums it is possible to reduce the number of bugs in your code.

For example, if we consider an application for a tea shop, it would be possible to restrict the tea size to small, medium and large. This would make sure that it would not allow anyone to order any size other than the small, medium or large.

Example:
class Tea {

   enum TeaSize{ SMALL, MEDIUM, LARGE }
   TeaSize size;
}

public class TeaTest {

   public static void main(String args[]){
      Tea t1 = new Tea();
      t1.size = Tea.TeaSize.SMALL;
      System.out.println("Size: " + t1.size);
   }
}


Following example will produce the following result:

Size: SMALL
Note: enums can be declared as their own or inside a class. Methods, variables, constructors can be defined inside enums as well.

No comments:

Post a Comment