What are packages ?
Packages group related classes and interfaces together and thus avoiding any name conflicts. From OOP’s point of view packages are useful for grouping related classes together. Classes are group together in a package using “package” keyword. In Java, a package is a mechanism for organizing classes and interfaces into a hierarchical structure. It helps in … Read more