java main method
You must be thinking that a particular line which always there in every java program is:-
public static void main(String [ ] args)
Q.what is this ???
A.The answer is this the main( ) method of java. The starting point from where the JVM starts reading &
executing the java program.
- Whether a class contains main( ) method or not and whether main( ) method declared according to requirements or not these things won't checked by Compiler.