Packages - Declaring A Package
Declaring a Package
At the very top of MyClass.java, we need to add a package declaration:
Now, when Java compiles your code, it knows that MyClass belongs to the example.hello package and expects to find it in the corresponding directory structure. But, what does this mean in practice?
ByteBrawl
0