Java Program Structure

A Java program may contain many classes of which only one class defines the main method. Classes contain data members and methods that operate on the data members of the class. Methods may contain data type declaration and executable statements. To write a Java program, we first define classes and then put them together. A Java program may contain one or more sections are shown as following in Fig:

Java

Documentation Section:

The documentation section comprises a set of comment lines giving the name of the program. The author and other details which the programmer would like to refer to at a later stage. Comments must explain the why and what of classes and how of the algorithm. This would greatly help in maintaining the program. Java also uses the third style of the comment [java]/*….*/[/java] known as documentation comment. This form of comment is used for generating documentation automatically.

Package Statement:

The first statement allowed in a Java file is a package statement. This statement declares a package name and informs the compiler that the classes defined here belong to this package.

package teacher;

Import Statements:

After a package statement may be several import statements. It is similar to the #include statement in C.

import teacher.test;

Interface Statements:

An interface is like a class but includes a group of method declarations. It is an optional section and it is used only when we wish to implement the multiple inheritance features in the program.

Class Definition:

A Java program may contain multiple class definitions. Classes are the primary and essential elements of a Java Program. These classes are used to map the objects of real-world problems. The number of classes used depends on the complexity of the problem.

Main Method Class:

Every Java standalone program requires a main method as its starting point, this class is the essential part of a Java program. A simple Java program may contain only this part. The main method creates objects of various classes and establishes communication between them. On reaching the end of the main, the program terminates and the control passes back to the operating system.