In Java why we write public static void main(String args[])
why not main()?
Answer Posted / xyz
Public -> Because we want to access the main from the out side of the class generally when we run the java program at that time it call the main method.
Static ->Because it will create only one copy of main method and we can call with class name so when we run program it will
run main method using passed program name like name.main();
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why hashset is used in java?
How do you convert bytes to character in java?
What is integer parseint?
What does indexof mean?
What does those terms actually mean included in the j.d.k i.6?
What is the argument in java?
What is a void in java?
What is array list in java?
How to create an interface?
What is the class in java?
What is the abstraction?
What is the common usage of serialization?
What is foreach loop in java?
Differentiate between stringbuffer and stringbuilder in java.
Can private method static?