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 types of methodology?
What does replaceall do in java?
What is the purpose of using bufferedinputstream and bufferedoutputstream classes?
What is the difference between stringbuffer and stringbuilder?
Is call by reference possible in java?
what are the disadvantages of indexes in oracle?
Why we used vector class?
What is argument in java?
What is meant by JVM? Is JVM platform independent or not?
What is java in simple terms?
Is there a jre for java 11?
what is the purpose of the wait(), notify(), and notifyall() methods? : Java thread
v-model life cycle
Difference between linkedlist and arraylist.
What is the difference between integer parseint and integer valueof?