Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

09. HelloWorld Java Program By Mr.

Vishnu

Hello world java program

As we have discussed all required detail to develop and execute a java program. Let us
start java programming with first simple java program to print “Hello World”.

Create Hello world java program:

HelloWorld.java

package com.sst;

public class HelloWorld {


public static void main(String args[]) {
// This line will print "Hello World".
System.out.println("Hello World.");
}

}
Output:

Hello World.

To understand above java program better let us have a brief look on it:

1
Sri Sureka Technologies, NearAndraBank,Opposite Geethanjali High School, Near S.R.Nagar
UmeshChandraStachu, S.R.Nagar, Hyderabad-500038, Ph: 040-66616677, Mobile: +91-9885602332.
09. HelloWorld Java Program By Mr. Vishnu

1. Class: is a keyword used to declare a class with specific name.

2. Public: is an access modifier.

3. Static: is a keyword which can be used with class, method, variable/constant , block.
If it is used with a method that method is known as static method. For static method
invocation no need for object creation, method will be associate with class.

4. Void: return type of the method, void means it does not return any value.

5. Main: method is invoked by JVM, as it is static no need to create an object. It


represent the program’s startup.

6. String args[] : represents the array of String type which is used in command line
arguments.

7. System.out.println():

 System is a final class and its all members are static.


 out is a public final static member of System class. out is of PrintStream type.
 println() is the method of PrintStream class.

2
Sri Sureka Technologies, NearAndraBank,Opposite Geethanjali High School, Near S.R.Nagar
UmeshChandraStachu, S.R.Nagar, Hyderabad-500038, Ph: 040-66616677, Mobile: +91-9885602332.

You might also like