In Java why we write public static void main(String args[])
why not main()?
Answer Posted / madhu
public static void main()
Public:-->The method is public because it be accessible to
the JVM to begin execution of the program JVM is outside of
the class.
Static:--> It is Static because it be available for
execution without an object instance. you may know that you
need an object instance to invoke any method. So you cannot
begin execution of a class without its object if the main
method was not static
Void:--> It returns only a void because, once the main
method execution is over, the program terminates. So there
can be no data that can be returned by the Main method
Main:--> Main() is the entry point of the program. Rather
we can say it is the main gate to enter inside the
apartment. It should be public because the compiler need to
enter inside the method (The guest need to access the
apartment to reach the security guard).
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is flush () in java?
Can list be final in java?
Write a java program for binary search?
What are the two ways in which thread can be created?
Is java free for commercial?
Is 0 a real number?
What are the two parts of a conditional statement?
Explain the difference between string, stringbuffer and stringbuilder in java?
What is the difference between static method and instance method in Java?
What does percent mean in java?
What is difference between throw and throws ?
why java uses class level type casting ?
If goto and const is reserve words than why it is not work in java?
Can we declare main () method as non static?
Is object a data type in java?