5.2.Declaring Classes
You’ve seen classes defined in the following way:
class MyClass { //field, constructor, and method declarations }
Classes are declared here. The class body (the area between the braces) contains constructors for initializing new objects, declarations for fields that provide the class and its objects’ state, and methods to implement the class and its objects’ behavior.
This simple class declaration comprises only the necessary class declaration components. At the beginning of the class declaration, you can list the class’s superclass, interfaces, and more. An example,
class MyClass extends MySuperClass implements YourInterface { //field, constructor, and method declarations }
indicates that MyClass is a subclass of MySuperClass and that it implements the YourInterface interface.
Additionally, it is possible to include modifiers such as public or private at the outset of a class declaration. Consequently, the introductory line of a class declaration can become quite intricate. Subsequently, this lecture will address the modifiers public and private, which govern which classes have access to MyClass. The lesson on interfaces and inheritance will elucidate the rationale behind the use of the “extends” and “implements” clauses in a class declaration. At present, there is no need for concern regarding these additional complications.
In general, the following components may be included in class declarations:
- Modifiers such as public and private, among others, will be encountered in the future.
- By convention, the initial letter of the class name is capitalized.
- The keyword extends precedes the name of the class’s progenitor (superclass), if any. A class may only extend (subclass) one parent.
- The keyword “implements” precedes a comma-separated enumeration of interfaces that the class has implemented, if any. A class has the capacity to implement multiple interfaces.
- The class body, enclosed by braces, is represented as {}.