Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Empty file is valid Java source file, but how it is handled inside the JVM?

share|improve this question

3 Answers

There is no one-to-one relation between .java-files and .class-files. What you have is a one-to-one relation between classes (or class-declarations) and .class-files.

A Java-source file with zero class-declarations will not result in any .class files, so it's not really handled by the JVM at all.

$ touch Test.java

$ ls
Test.java

$ javac Test.java

$ ls
Test.java

In the Java Language Specification a Java-source file is synonym with a Compilation Unit. The relevant section in the JLS is 7.3 Compilation Units.

The grammar is described as follows:

CompilationUnit:
     PackageDeclarationopt ImportDeclarationsopt TypeDeclarationsopt
...

The opt-subscript says that the part is optional. Since TypeDeclarations is optional, no class-declarations need to exist.

share|improve this answer

javac produces *.class files for each which occur in the .java file. So - none of them, the compiler just does nothing. Nothing give to a jvm.

share|improve this answer

An empty source file will create no class files, so there is nothing for the JVM to "handle". And an empty class file (which is not something the compiler will create) is invalid, probably resulting in a ClassFormatError or something like that, if that was your question.

share|improve this answer
thank u guys for the answers.. – srini Oct 17 '11 at 9:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.