Empty file is valid Java source file, but how it is handled inside the JVM?
|
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
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:
The opt-subscript says that the part is optional. Since TypeDeclarations is optional, no class-declarations need to exist. |
||||
|
|
|
javac produces |
|||
|
|
|
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. |
|||
|
|