1 | One file can contain several related classes, but only one of them can be public. If the public class is called wheat.java, then the file must be called wheat. |
2 |
A set of classes in different files can be grouped together in a package. Each of the files must be in the same directory and contain the command
|
3 | The name of the directory must also be mill. |
4 | Directory name: mill |
5 | File: wheat.java: stone.java: |
6 | package mill package mill |
7 | public class wheat . . . public class stone . . . |