
class Hello { public static void main(String[] args) { System.out.println("hi hello hru "); }
Blockquote
}

Class is the building block in Java, each and every methods & variable exists within the class or object. (instance of program is called object ). The public word specifies the accessibility of the class. The visibility of the class or function can be public, private, etc. The class Hello code declares a new class "Hello".
The main Method:
The main method is the entry point in the Java program and java program can't run without main method. JVM calls the main method of the class. This method is always first thing that is executed in a java program. Here is the main method:
public static void main(String[] args) {
...... .....
}
{ is used to start the beginning of main block and } ends the main block. Every thing in the main block is executed by the JVM.
The code:
System.out.println("hi hello hru ");
prints the "hi hello hru " on the console. The above line calls the println method of System.out class.
The keyword static:
The keyword static indicates that the method is a class method, which can be called without the requirement to instantiate an object of the class. This is used by the Java interpreter to launch the program by invoking the main method of the class identified in the command to start the program.
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.