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 difference between arraylist and hashset in java?
What is the difference between form & report?
what is synchronization? : Java thread
Can we override private constructor in java?
What do you understand by synchronization?
What is the size of string?
Why main() method is public, static and void in java ?
What do you mean by formatting?
What one should take care of, while serializing the object?
How to use arraylist in java netbeans?
What is the biggest integer?
Define class?
What language is pass by reference?
How to do encapsulation in java?
Can we convert list to set in java?