when everything can be done by static block then why do we
use main method?.
Answers were Sorted based on User's Feedback
Answer / hemanth kumar kalavagunta
Yes ... when everything can be done by static block then why
do we use main method. this is because, main method is the
only step from which compiler can enter the program to start
and this is the only way through which the data from outside
jvm can be entered into the jvm in the form of command line
arguments. using the static blocks there is no way to get
the data from the outside of the program and it is confined
to the program and program is it's world. main's world is
related both with the inside of jvm and outside of jvm.
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / guest
the main block is declared as static sothat the java
interpreter could use it without instantiating it,but if we
declare everything as static there is no meaning of a class
and specifying instance variables and methods belong to
that specific class only.
| Is This Answer Correct ? | 2 Yes | 1 No |
What is java algorithm?
Write code to implement bubble sort in java?
What is an event?
What is the functionality of Webserver?
What is the declaration statement?
explain autoboxing in java?
What is floor math?
What is t in parametric equations?
If a method is declared as protected, where may the method be accessed?
What is the difference between final, finally and finalize()?
What are the types of inner classes (non-static nested class) used in java?
explain local datetime api in java8?