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?
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 |
how to create a (*)pyramid using java codes???
Write a java program to display multiplication table in a Frame.
Design a program using one-dimensional array that determines the highest value among the eight input values from a user. Display the difference of each value from the highest to the lowest.
I am trying to pass the string firstName from a Servlet called SampleServet. I am running this on eclipse and it tells me that "the value for annotation attribute must be a constant expression. I don't understand why it is giving me this error. @PersonAnnotation(name = SampleServlet.firstName) public class AnnotationClass{
write a java program to create a Frame with three scrolls, change the back ground color of the frame using functions with values of scrolls.
inner join,outerjoin,trigger,stored procedure explain with code snippets?
How to create and run runnable jar file of a Java Project.
4 Answers HCL, TCS, Tech Mahindra, US Consulate, Wipro,
we compile any program bu c:/>javac prog.java and run as c:/>java prog Here what's the meaning of c in javac. We have java Interpreter but not compiler.Then why we have to use javac. Please answer this question?
Can we run Applet in Web browser with security policy files
write a program that will ask the user to enter a number n and display the product of all numbers from 1 to n.
how to store and retrive a set of values without using an array
Is there any static classes are in java give some examples