What Is A Super-class?
Ask by Prakash nidhi Verma
Updated 18 Sep 2020
Superclass is those classes that extended by another class (sub class). It is also known as base classes or parent class. In other words you can say that “a class whose all properties and methods are inherited by subclass is known as superclass”.
For Example
{
...........
.........
}
A new class( SubClass) can be created by extending all properties or methods of SupperClass.
{
............
.............
}
A super-class is the basis of the class under consideration of a given class. The given class is defined as a subset of the super-class. Objects of the given class potentially posses all the characteristics belonging to objects of the super-class.