Can we Overload Main method in java.

Can we Overload Main method in java.
Yes you can overload main method but public static void main(String[] args) is entry point in java. JVM always search for this method. If it is not present in overloaded version ,when you try to run your code that gives run time exception no main method...