A Java source file is a plain text file containing Java source code and having .java
extension. The .java
extension means that the file is the Java source file. Java source code file contains source code for a class, interface, enumeration, or annotation type. There are some rules associated to Java source file. We should adhere to following rules while writing Java source code.
public
class per source code file.
public
class in a file, the name of the file must match the name of the public
class. For example, a class declared as public class Dog { }
must be in a source code file named Dog.java
.
package
statement must be the first line in the source code file, before any import
statements that may be present.
import
statements, they must go between the package
statement (if there is one) and the class declaration. If there isn't a package
statement, then the import
statement(s) must be the first line(s) in the source code file. If there are no package
or import
statements , the class declaration must be the first line in the source code file.
import
and package
statements apply to all classes within a source code file. In other words, there's no way to declare multiple classes in a file and have them in different packages, or use different imports.
Hope you have enjoyed reading Java source file declaration rules. Please do write us if you have any suggestion/comment or come across any error on this page. Thanks for reading!
Share this page on WhatsApp