Sunday, December 13, 2009

Java program without main

You can write a runnable Java program which does not have main method at all. This can be done using the static block of the class.

The reason this works is that static initialization blocks get executed as soon as the class is loaded, even before the main method is called. During run time JVM will search for the main method after exiting from this block. If it does not find the main method, it throws an exception. To avoid the exception System.exit(0); statement is used which terminates the program at the end of the static block itself.
public class MainMethodNot {
   static
   {
      System.out.println("This java program have run without the run method");
      System.exit(0);
   }
}

Other method is using applet

No comments:

Post a Comment

Chitika