could you run the java program without main method?
Answer Posted / amit singh
yes you can run java peogram without main
we do it through the static block ,because its execute
before the main method,
so when the class is loaded it will execute before main
but whrn the static block excute and after exiting it jvm
search for main when it will not fou8nd it then it throw
some exception so for this we use the
System.exit();
class Moon
{
static
{
System.out.println("hello i am visible without main");
}
System.exit();
}
Thanks amit singh
amitsing2008@gmail.com
Is This Answer Correct ? | 36 Yes | 8 No |
Post New Answer View All Answers
Can a method be overloaded based on different return type but same argument type?
Explain java code for recursive solution's base case?
How many types of string data types are there?
What is static class
What are checked exceptions?
What is the purpose of garbage collection in java?
Can a vector contain heterogenous objects?
What are keywords give examples?
Which is faster call by value or call by reference?
What is the use of optional ?
Is arraylist dynamic in java?
How many ways can an argument be passed to a subroutine and explain them?
What is a heavyweight component?
What is lambda in java?
What is final variable?