Java Packages
Java Packages Learning a Programming language and especially a robust OOP language such as Java is a process--or rather many processes. This post covers an example of such a process. I knew what namespaces were/are. I thought of a namespace as a dictionary, or glossary, or maybe a reference codebook. I still think that works for me, but I found this definition in one of the links below: A namespace is a group of related elements that each have a unique name or identifier. Just as computer operating systems, domain names, and so many other structures need namespaces, so does Java. I learned how to use packages I just told my IDE (yes, more on command line preferences in other posts) to make a package, then when my classes and interfaces were inside that package they had access to each other. I knew that Java comes with its own packages which provide ways to extend visibility among various classes/java files The package keyword, if it appears, must be ...