Why the program getting error if we don't use String args[]
in main(), even in the case of not getting any arguments
from command line?



Why the program getting error if we don't use String args[] in main(), even in the case of not..

Answer / mehtaashish

First of all an in appropriate main method will not cause any
compile time error, it results in a runtime exception. The
reason for this is that the main method's signature is written
as such in Java specification. And all the interpreters and
compiler and constructed while keeping language specification
in mind. So whenever we try to run a program JVM looks for
"public static void main(String args[])" for starting
execution. And if it does not find any main method, it throws
the "NoClassDefFoundException".

Is This Answer Correct ?    5 Yes 0 No

Post New Answer

More J2SE Code Interview Questions

Why the program getting error if we don't use String args[] in main(), even in the case of not getting any arguments from command line?

1 Answers  


For printing a message we use System.out.println in normal programs. We use String msg="text....."; Can't we use String msg=" " in normal programs and System.out.println("........") in applets. Please answer this question?

0 Answers  


write a program that will ask the user to enter a number n and display the product of all numbers from 1 to n.

1 Answers  


Write a java program to display multiplication table in a Frame.

1 Answers  


How can we get the details for printing the employee details at run time using JDBC connectivity? can u provide the coding for that? Its urgent?

2 Answers  






How to create Date method to set the date in Ms Access

0 Answers  


what are the other loops except for for,while,do while and until?

0 Answers   Aricent,


How Can I Trace A Java Program . Please Give Me Step by Step Process

1 Answers   IBM,


how to print a message to console without using main() function?(do not use even static blocks also.)

14 Answers   Google, Zoho,


what is runtime class?

0 Answers   MAQ,


Is there any static classes are in java give some examples

0 Answers  


Write a program to convert a decimal number to binary form?

1 Answers   Oracle,


Categories