What happens when a main method is declared as private?

Answers were Sorted based on User's Feedback



What happens when a main method is declared as private?..

Answer / dharma

main method signature must be like

public static void main(String args[])

if we declare as private then it compiles successfully

but at Runtime it says

"Main method not found in class"

Is This Answer Correct ?    1 Yes 0 No

What happens when a main method is declared as private?..

Answer / chinmay

If main method declared as private then at compilation no problem but at run time it shows an error that main method should be public...
because we access the main() method out side from class if it is private then it cannot be accessible...
that's why we have to write public in main method signature...

Is This Answer Correct ?    1 Yes 0 No

What happens when a main method is declared as private?..

Answer / maduakor ngozi chukwukodinaka

When a method is declared as private, the program compiles
properly but it will give runtime error ?Main method not
public".

Is This Answer Correct ?    0 Yes 0 No

What happens when a main method is declared as private?..

Answer / pankaj kumar

I have checked it proper in C# using visual studio.
its giving right output without any error at compile time or run time.

Is This Answer Correct ?    0 Yes 0 No

What happens when a main method is declared as private?..

Answer / pankaj kumar

i have checked it using c# in visual Studio.
then i found that there is no error in compilation or in run.
it is giving right output as we want without any error.

Is This Answer Correct ?    0 Yes 0 No

What happens when a main method is declared as private?..

Answer / milanjeet singh

When we define main method as private, it will compile but when run, it show an Error as: main method is not found in the class, please define the main method as public static void main (String[] args)

Is This Answer Correct ?    0 Yes 0 No

What happens when a main method is declared as private?..

Answer / sachin

JVM wants to execute the class its starting Execution from main Method means if JVM wants to execute main method if we declare main Method as private then its restriction the scope of main method if we declare Main Method as public then only jvm can applicable to access the main Method.
for e.g
class SE3
{
private static void main(String[] args)
{
System.out.prinln("Hello");
}
}
E:A_coreResearch_Programs>javac SE3.java

E:A_coreResearch_Programs>java SE3
Error: Main method not found in class SE3, please define the main method as
public static void main(String[] args)
or a JavaFX application class must extend javafx.application.Application

Is This Answer Correct ?    0 Yes 0 No

What happens when a main method is declared as private?..

Answer / thiru

The default signature should not be altered. If any changes, at run time "Class xxx does not have main method" exception will be thrown. But compilation will not give any exception.

Is This Answer Correct ?    0 Yes 0 No

What happens when a main method is declared as private?..

Answer / pawan

vani, varsha is correct , the 'private main method' is as
good as any member method your class can have (note that
main is not a key word in java) , it can be only used inside
the class in which it is defined.

It is clearly mentioned in the specifications that the
executing class should contain a 'public static void method'
as a point of execution otherwise execution will fail
complaining ABOUT THE METHOD WHICH I MENTIONED ABOVE.

Is This Answer Correct ?    2 Yes 3 No

What happens when a main method is declared as private?..

Answer / r.jainrocks@gmail.com

in above answer first word is ByteCode

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More Core Java Interview Questions

What is the difference between normal report & matrix report?

0 Answers  


Can sleep() method causes another thread to sleep?

0 Answers  


What is object english?

0 Answers  


Is void a keyword in java?

0 Answers  


What is meant by final class, methods and variables?

3 Answers  






I have one Shopping cart application, i that i have selected some items, while clicking submit button by mistake i have clicked twice or trice, that time items are selected twice or trice. Actually i want only one copy of items but its selected twice or trice. So how can we avoid this problem?

2 Answers   Honeywell,


Explain the use of sublass in a java program?

0 Answers  


Is java pass by value or pass by reference?

0 Answers  


Explain different types of wrapper classes in java?

0 Answers  


How java uses the string and stringbuffer classes?

0 Answers  


When will we use them?

0 Answers  


what is the use of declaring constructor as private?

5 Answers   Cyient, IVY Technologies, Sai Softech, Virtusa,


Categories