Hiding Class in Java
Hiding Class in Java
Here, the class DataClass which is not declared public is hidden from outside of the
package mypack. This class can be seen and used only by other classes in the same package.
Note that a Java source file should contain only one public class and may include any number
of non-public classes.
Program