Inheritance in Java
Inheritance in Java
// concept of inheritance
// base class
class Bicycle {
{
this.gear = gear;
this.speed = speed;
}
{
speed -= decrement;
}
public void speedUp(int increment)
{
speed += increment;
}
{
}
// derived class
int startHeight)
{
super(gear, speed);
seatHeight = startHeight;
}
{
seatHeight = newValue;
}
{
+ seatHeight);
}
// driver class
{
System.out.println(mb.toString());
}
Output
No of gears are 3
speed of bicycle is 100
seat height is 25
In the above program, when an object of MountainBike class is created, a copy of all
methods and fields of the superclass acquire memory in this object. That is why by
using the object of the subclass we can also access the members of a superclass.
Please note that during inheritance only the object of the subclass is created, not the
superclass. For more, refer Java Object Creation of Inherited Class .
Illustrative image of the program:
Below are the different types of inheritance which are supported by Java.
1. Single Inheritance: In single inheritance, subclasses inherit the features of one
superclass. In the image below, class A serves as a base class for the derived class
B.
Java
import java.io.*;
import java.lang.*;
import java.util.*;
class one {
{
System.out.println("Geeks");
}
// Driver class
g.print_geek();
g.print_for();
g.print_geek();
}
Output
Geeks
for
Geeks
import java.io.*;
import java.lang.*;
import java.util.*;
class one {
{
System.out.println("Geeks");
}
{
System.out.println("Geeks");
}
// Drived class
{
g.print_geek();
g.print_for();
g.print_geek();
}
Output
Geeks
for
Geeks
3. Hierarchical Inheritance: In Hierarchical Inheritance, one class serves as a
superclass (base class) for more than one subclass. In the below image, class A
serves as a base class for the derived class B, C and D.
Java
class A {
class B extends A {
public void print_B() { System.out.println("Class B"); }
class C extends A {
class D extends A {
// Driver Class
{
obj_B.print_A();
obj_B.print_B();
obj_C.print_A();
obj_C.print_C();
obj_D.print_A();
obj_D.print_D();
}
Output
Class A
Class B
Class A
Class C
Class A
Class D
Hierarchical Inheritance
import java.io.*;
import java.lang.*;
import java.util.*;
interface one {
interface two {
{
System.out.println("Geeks");
}
// Drived class
{
c.print_geek();
c.print_for();
c.print_geek();
}
Output
Geeks
for
Geeks
5. Hybrid Inheritance(Through Interfaces): It is a mix of two or more of the above
types of inheritance. Since java doesn’t support multiple inheritances with classes,
hybrid inheritance is also not possible with classes. In java, we can achieve hybrid
inheritance only through Interfaces.
Important facts about inheritance in Java
Default superclass: Except Object class, which has no superclass, every class
has one and only one direct superclass (single inheritance). In the absence of any
other explicit superclass, every class is implicitly a subclass of the Object class.
Superclass can only be one: A superclass can have any number of
subclasses. But a subclass can have only one superclass. This is because Java
does not support multiple inheritances with classes. Although with interfaces,
multiple inheritances are supported by java.
Inheriting Constructors: A subclass inherits all the members (fields, methods,
and nested classes) from its superclass. Constructors are not members, so they
are not inherited by subclasses, but the constructor of the superclass can be
invoked from the subclass.
Private member inheritance: A subclass does not inherit the private members
of its parent class. However, if the superclass has public or protected methods(like
getters and setters) for accessing its private fields, these can also be used by the
subclass.
Java IS-A type of Relationship.
IS-A is a way of saying: This object is a type of that object. Let us see how the extends
keyword is used to achieve inheritance.
Java
Now, based on the above example, in Object-Oriented terms, the following are true:-
1. SolarSystem the superclass of Earth class.
2. SolarSystem the superclass of Mars class.
3. Earth and Mars are subclasses of SolarSystem class.
4. Moon is the subclass of both Earth and SolarSystem classes.
Java
class SolarSystem {
{
}
}
Output
true
true
true
What all can be done in a Subclass?
In sub-classes we can inherit members as is, replace them, hide them, or supplement
them with new members:
The inherited fields can be used directly, just like any other fields.
We can declare new fields in the subclass that are not in the superclass.
The inherited methods can be used directly as they are.
We can write a new instance method in the subclass that has the same
signature as the one in the superclass, thus overriding it (as in the example
above, toString() method is overridden).
We can write a new static method in the subclass that has the same signature
as the one in the superclass, thus hiding it.
We can declare new methods in the subclass that are not in the superclass.
We can write a subclass constructor that invokes the constructor of the
superclass, either implicitly or by using the keyword super.