Method calling Preference

package sample;

/** 1.Static method
 *   2.Static main method
*    3.Non-Static method
 * @author A.Subash
 */
public class sample4
 {


    public void main()
    {
        System.out.print("Java");
    }



    static
    {
        System.out.print("Welcome");
    }



    public static void main(String[] ags)
    {
        System.out.print("to");
        sample4 s1=new sample4();
        s1.main();
    }
}
/*
O/P:
Welcome to java
*/

No comments:

Post a Comment

Thank you for using this blog.