Why do we need public static void main(String args[])
method in Java...?
Answer / shadow
We need
• public: The method can be accessed outside the
class / package
• static: You need not have an instance of the class
to access the method
• void: Your application need not return a value, as
the JVM launcher would return the value when it exits
• main(): This is the entry point for the application
If the main() was not static, you would require an instance
of the class in order to execute the method.
....!
$HADOW
| Is This Answer Correct ? | 14 Yes | 0 No |
What is the benefit of inner classes in java?
What is the maximum size of list in java?
what are literals in java?
How TreeMap sorts the objects inside it?? suppose if have include one employee object and one car object. On what basis it will sort?
Why Java is called as purely platform independent..? Explain briefly..dont Give regular answers Explain with your own example..?
How do you escape json?
What is the main method java?
Where is core java used?
What is unicode used for?
What about abstract classes in java?
Is finalize() similar to a destructor?
What is getkey () in java?