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
Differentiate between run time error and syntax error.
What is complexity and its types?
What are the advantages and disadvantages of reference counting in garbage collection?
What is linked hashmap and its features?
What is hashtable and explain features of hashtable?
How many types of methods are there in java?
Why do we use string?
Which class is the superclass of all classes?
What do you mean by stream pipelining in java 8?
How does thread synchronization occurs inside a monitor? What levels of synchronization can you apply?
Write a program in java to calculate the difference between the sum of the odd level and even level nodes of a binary tree.
Where are register variables stored?
What is double checked locking in singleton?
what is singleton in java?
What are adapter classes?