<<< NetBeans | Index | Java Compilation Process >>> |
Each class is placed in its own source .java file
The source file name is the same as the class name
Java application is split in several source files and directories
Compiled source code for each class is placed in its own .class file that contains the bytecode
Always: file's name must match the name of the class!
<<< NetBeans | Index | Java Compilation Process >>> |