why we write public static void main (String args[])
in core java plz explain briefly??????????????????
Answer Posted / nilay
because in JAVA everything is within class and should be
called with classname(static methods) or with instance of
that class. but main is the first method to be called when
no instances are in memory so that is why it is static and
is called like <classname>.main() by System class. and it
must be public because it is called from outside enviornent
of current class file. String[] is for the command line
arguments that you pass when you run your java program
by "java .classfile arg1 arg2" so all arguments are
received here and for multiple arguments it is an array of
strings. it does not return anything so it's return type is
void.
| Is This Answer Correct ? | 17 Yes | 0 No |
Post New Answer View All Answers
What are the advantages of assembly language?
What is the difference between checked exception and unchecked exception?
Does java support function overloading, pointers, structures, unions or linked lists?
Why runnable interface is used in java?
What is return keyword in java?
What are the restriction imposed on a static method or a static block of code?
What is the byte range?
What is indexof?
Explain public static void main(string args[]) in java.
What is the use of list in java?
What are the 5 types of research methods?
Explain the features of java?
Can you make a constructor final in Java?
What is the base class of all exception classes?
What is default constructors?