what is purpose of writting public static void main(Strind
arg[]) in java..?
Answer Posted / jyotshna pardhia
public: to call by jvm from anywhere.(i.e. suppose ur
programms are saved in d drive and jdk is installed in e
drive so we can call by jvm from any drive )
static: without creating objects also jvm has to call this
method.
void: main() method never returns anything to jvm.
main: name of this method which is configured as main
only,inside the jvm by sun.
String []args: command line arguments.
if we are performing any changes to this main method than
we will get run time exception but still we can add
identifiers like strictfp and synchronized to main method.
Thanks & Regards
jyotshna
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What is the effect of keeping a constructor private?
Define inheritance with reference to java.
What is merge sort in java?
Why wait(),notify(),notifyAll() methods defined in Object class althought we are using in only threads.
What is number data type?
Which category the java thread do fall in?
If we allocate the memory using 'new' & de-allocated using 'free' then what will happen?
What does the “final” keyword mean in front of a variable? A method? A class?
When should the method invokelater() be used?
Why does it take so much time to access an applet having swing components the first time?
What is numeric data type?
What happens if main method is not static?
What is re-factoring in software?
What is the difference between @before and @beforeclass annotation?
Is integer immutable in java?