1 | The previous example had two classes in a single file (but only one was public) |
2 | The next example also has two classes, but in separate files (both may be public) |
3 | The advantage of this approach is that other Java programs may use these classes (since they're defined in separate files |
4 | In this way, a class becomes reusable |