9 - Inheritance Flashcards
Inheritance
is the process of deriving a new class from an existing one
One purpose of inheritance is …
to reuse existing software
Inheritance creates an …
is-a relationship between the parent and child classes.
Extends
Java keyword to indicate that a new class is being derived from an existing class.
Protected
allows derived classes to reference it. Provides encapsulation that permits inheritance.
Super
used in a class to refer to its parent class such as a class’s constructor.
single inheritance
Java’s approach to inheritance is called single inheritance, meaning a derived class can only have one parent.
A child class can override(redefine) …
the parent’s definition of an inherited method. Must have the same name and same signature.
Shadow variable
if a variable of the same name is declared in a child class.
class hierarchy
A child of one class can be the parent of one or more other classes
Common features should be located as high …
in a class hierarchy as is reasonable possible.
Object class
All Java classes are derived, directly or indirectly, from the Object class.
What methods are inherited by every class in a Java program?
toString
equals
An abstract class cannot …
be instantiated. It represents a concept on which other classes can build their definitions. They are like placeholders for all derived classes.
Abstract children and parent relationship…
A class derived from an abstract parent must override all of its parent’s abstract methods, or the derived class will also be considered abstract.
Inheritance can be applied to interfaces …
so that one interface can be derived from another.
Private members are inherited by the child class…
but cannot be referenced directly by name. They may be used indirectly, however.
Inheritance: Every derivation should be an …
is-a relationship. The child should be a more specific version of the parent.
Inheritance: Design a class hierarchy to capitalize…
on reuse and potential reuse in the future.
Inheritance: Push _______ as high in the class hierarchy as possible.
common features
Inheritance: Override methods as appropriate….
to tailor or change the functionality of a child.
Inheritance: Add new variables to the child class as needed but dont….
shadow(redefine) an inherited variable.
Inheritance: allow each class to…..
manage its own data. Therefore, use the super reference to invoke a parent’s construction and to call overridden versions of methods if appropriate.
Inheritance: Use interfaces to…
create a class that serves multiple roles (simulating multiple inheritance).
Inheritance: override general methods such as…
toString and equals appropriately in child classes so that the inherited version don’t cause unintentional problems later.
Inheritance: Use visibility modifiers carefully to …
provide the needed access in derived classes without violating encapsulation.
final
keyword that can be used to restrict in heritance and prevents it from being overridden in other classes.