Inheritance : Inheritance « Class Definition « Java Tutorial






  1. You extend a class by creating a new class.
  2. The former and the latter will then have a parent-child relationship.
  3. The original class is the parent class or the base class or the superclass.
  4. The new class is called a child class or a subclass or a derived class of the parent.
  5. The process of extending a class in object-oriented programming is called inheritance.
  6. In a subclass you can add new methods and new fields as well as override existing methods in the parent class to change their behaviors.
  7. Inheritance gives you the opportunity to add some functionality that does not exist in the original class.
  8. Inheritance can also change the behaviors of the existing class to better suit your needs.
  9. The subclass and the superclass has an "is-a" relationship.








5.22.Inheritance
5.22.1.Inheritance
5.22.2.Accessibility
5.22.3.Method Overriding
5.22.4.The extends Keyword
5.22.5.Deriving a Class
5.22.6.The keyword super represents an instance of the direct superclass of the current object.
5.22.7.Derived Class Constructors: Calling the Base Class Constructor
5.22.8.Overriding a Base Class Method
5.22.9.Type Casting
5.22.10.Inheritance, constructors and arguments
5.22.11.Combining composition and inheritance
5.22.12.Inheritance and upcasting.
5.22.13.Overloading a base-class method name in a derived class does not hide the base-class versions.
5.22.14.Cleanup and inheritance
5.22.15.Creating a Multilevel Hierarchy
5.22.16.Demonstrate when constructors are called in a Multilevel Hierarchy