IS it Compulsory that a class name is same as file name in java?

Answer Posted / rasmitha

No.

Example:

class Test
{
Public static void main(String args[])
{
----------------
----------------------
}
Save the progrm as Ex1.java(any name we can give)

when we compile

>>javac Ex1.java

when we run the program to use class name having main method

>>java Test (it is must because execution starts with main)

Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to add flash or *.gif file in edit panel in java?

1965