Method in java, Simple main method Example

Java Programming Language / Class, Object and Methods in java

1125

Program:

 public class MyClassExampleMainMethod{

//Here is a simple Java method example:
//Below is main method

    public static void main(String args[]) {
        System.out.print("hello");
         System.out.print("\n");
        //prints the text parameter to System.out.
    }
}

Output:

hello
Press any key to continue . . .

This Particular section is dedicated to Programs only. If you want learn more about Java Programming Language. Then you can visit below links to get more depth on this subject.