Why do we use public static with the main function in Java?

Answers were Sorted based on User's Feedback



Why do we use public static with the main function in Java?..

Answer / sai

public is used so that it can be called easily from outside
the scope of function.Static is used so that it can be
easily called without using its object.

Is This Answer Correct ?    37 Yes 7 No

Why do we use public static with the main function in Java?..

Answer / rana

As we know public means we can access the method from
anywhere.Coming to static:- main() is a static method
therefore it implies that there is no need of creating
Object for that particular class to call this method.So
that when ever u run the program the Jvm will search for
main() in the class even there r no class objects created
for this class.

Is This Answer Correct ?    20 Yes 7 No

Why do we use public static with the main function in Java?..

Answer / ravikiran(aptech mumbai)

public means we are allowing the main method to be accessed
any where in the application.and is declared static because
jvm will look for the static one's once it completes the
loading the class.

Is This Answer Correct ?    11 Yes 5 No

Why do we use public static with the main function in Java?..

Answer / abhijit

public means-accessable from anywhere
static means-the point ,from where compilar can start its
compilation without object.

Is This Answer Correct ?    11 Yes 10 No

Why do we use public static with the main function in Java?..

Answer / manya

main function is used for two purposes:-1)when you have to
write a recursion code.2)to use command line arguments

Is This Answer Correct ?    1 Yes 0 No

Why do we use public static with the main function in Java?..

Answer / balaji kumar

public - it can be access outside of the(class, package,
subclass and world).

Static- It is used to run a method without any references of
a class. Then JVM will check all the 'static' methods in
"main class" and run the main method from those.

void- main method always has no return value to outside
methods or others. so it uses void keyword.

Is This Answer Correct ?    1 Yes 0 No

Why do we use public static with the main function in Java?..

Answer / rameshreddy.k

As we know public means we can access the method from
anywhere. in a java we want call method by using class
object. But main() is also method .that main() is there one
class but jVM execute program trough main() method with out
creating object main() method call thats way we use public
static the main function
thanks& regargs
RAMESH

Is This Answer Correct ?    4 Yes 4 No

Why do we use public static with the main function in Java?..

Answer / bheemrao

if we don't use public in main method jvm is looked for main
method but does not found.so run time error will occurred
"main() method must be declared as public". why its static
means in java we can execute methods with object.if we use
static it will execute without object.

Is This Answer Correct ?    2 Yes 2 No

Why do we use public static with the main function in Java?..

Answer / shekhar chauhan

public static void main()- firstly, public which r used
globly access this method in our whole progam. and static
basically used for that we can used only one main method in
whole program.we can not create object that class. so we
make static main method.

Is This Answer Correct ?    1 Yes 1 No

Why do we use public static with the main function in Java?..

Answer / saikat chowdhury

'public' keyword is an access specifier.It means you can access anywhere of the program using this specifier.When we use in the main function it can be access outside of the(class, package,subclass.'Static' also a keyword.When we use this in the main function that means you do not need to create the object of static.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

What modifiers are used for interface declaration?

7 Answers  


Why singleton is not thread safe?

0 Answers  


What is javac_g?

0 Answers  


what is the reason behind non static method cannot be referenced from a static Context?

2 Answers  


what is finalmethod & final variable with example?

6 Answers   HP,






How can we create a object of a class without using new operator.

1 Answers   Infosys, Nokia,


What is the difference between the size and capacity of a vector?

0 Answers  


Explain the difference between jvm and jre?

0 Answers  


What is use of static in java?

0 Answers  


What is the difference between Static and final?

1 Answers  


What is advantage of java?

0 Answers  


Where to store local variables?

0 Answers   Aspiring Minds,


Categories