Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Execute main() multiple times without using any other function or condition or recursion in Java

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Given task is to execute main() multiple times without using any other function and without recursion() and without error. Given condition is that if executing main() n times then you can only call him (n-1) times.

Solution:




class Test {
  
    // static block
    static
    {
        main(new String[] { "Hello" });
    }
    public static void main(String[] args)
    {
        System.out.println("Hii");
    }
}

Output:

Hii
Hii

Explanation: Static block is executed even before the main() executed. Here first, main() get called by static block and then JVM(Java Virtual Machine) call the main(). So, main() is executed two times by calling only one time.

My Personal Notes arrow_drop_up
Last Updated : 01 Apr, 2019
Like Article
Save Article
Similar Reads
Related Tutorials