Section A.5 File Names and Layout
Java source files should have the
.java
suffix, and Java bytecode files should have the .class
suffix.A Java source file can only contain a single
public
class. Private classes and interfaces associated with a public class can be included in the same file.Subsection A.5.1 Source File Organization Layout
All source files should begin with a comment block that contains important identifying information about the program, such as the name of the file, author, date, copyright information, and a brief description of the classes in the file. In the professional software world, the details of this “boilerplate” comment will vary from one software house to another. For the purposes of an academic computing course, the following type of comment block would be appropriate:
/*
* Filename: Example.java
* Author: J. Programmer
* Date: April, 20 2022
* Description: This program illustrates basic
* coding conventions.
*/
The beginning comment block should be followed by any package and import statements used by the program:
package java.mypackage;
import java.awt.*;
The package statement should only be used if the code in the file belongs to the package. None of the examples in this book use the package statement. The import statement allows you to use abbreviated names to refer to the library classes used in your program. For example, in a program that imports
java.awt.*
we can refer to the java.awt.Button
class as simply Button
. If the import statement were omitted, we would have to use the fully qualified name.The
import
statements should be followed by the class definitions contained in the file. Listing A.5.1 illustrates how a simple Java source file should be formatted and documented.You have attempted of activities on this page.