Java includes the import statement to bring certain classes, or entire packages, into visibility. Once imported, a class can be referred to directly, using only its name… Read more »
Glossary
- Packages - Packagesare containers for classes
- Class - A class is the blueprint from which individual objects are created
- Subclass - Classes can be derived from other classes. The derived class (the class that is derived from another class) is called a subclass
- Classpath - Classpath is a parameter set either on the command-line, or through an environment variable—that tells the Java Virtual Machine or the Java compiler where to look for user-defined classes and packages
- Access control modifiers - Access modifiers to set access levels for classes, variables, methods and constructors
- Interfaces - An interface is an abstract type that is used to specify an interface