In this article, Inheritance is introduced.
One of the major advantages of Object Oriented Programming is re-use. Inheritance is one of the mechanisms to achieve the same. In inheritance, a class (usually called superclass) is inherited by another class (usually called subclass). The subclass adds some attributes to superclass.
Below is a sample Python program to show how inheritance is implemented in Python.
Python
# A Python program to demonstrate inheritance # Base or Super class. Note object in bracket.# (Generally, object is made ancestor of all classes)# In Python 3.x "class Person" is # equivalent to "class Person(object)"classPerson(object):# Constructordef__init__(self,name):self.name=name# To get namedefgetName(self):returnself.name# To check if this person is employeedefisEmployee(self):returnFalse# Inherited or Sub class (Note Person in bracket)classEmployee(Person):# Here we return truedefisEmployee(self):returnTrue# Driver codeemp=Person("Geek1")# An Object of Personprint(emp.getName(),emp.isEmployee())emp=Employee("Geek2")# An Object of Employeeprint(emp.getName(),emp.isEmployee())
Output:
('Geek1', False)
('Geek2', True)
How to check if a class is subclass of another?
Python provides a function issubclass() that directly tells us if a class is subclass of another class.
Python
# Python example to check if a class is# subclass of anotherclassBase(object):pass# Empty ClassclassDerived(Base):pass# Empty Class# Driver Codeprint(issubclass(Derived,Base))print(issubclass(Base,Derived))d=Derived()b=Base()# b is not an instance of Derivedprint(isinstance(b,Derived))# But d is an instance of Baseprint(isinstance(d,Base))
Output:
True
False
False
True
What is object class?
Like Java Object class, in Python (from version 3.x), object is root of all classes.
In Python 3.x, "class Test(object)" and "class Test" are same.
In Python 2.x, "class Test(object)" creates a class with object as parent (called new style class) and "class Test" creates old style class (without object parent). Refer this for more details.
Does Python support Multiple Inheritance?
Unlike Java and like C++, Python supports multiple inheritance. We specify all parent classes as comma separated list in bracket.
Python
# Python example to show working of multiple # inheritanceclassBase1(object):def__init__(self):self.str1="Geek1"print"Base1"classBase2(object):def__init__(self):self.str2="Geek2"print"Base2"classDerived(Base1,Base2):def__init__(self):# Calling constructors of Base1# and Base2 classesBase1.__init__(self)Base2.__init__(self)print"Derived"defprintStrs(self):print(self.str1,self.str2)ob=Derived()ob.printStrs()
Output:
Base1
Base2
Derived
('Geek1', 'Geek2')
How to access parent members in a subclass?
Using Parent class namePython
# Python example to show that base# class members can be accessed in# derived class using base class nameclassBase(object):# Constructordef__init__(self,x):self.x=xclassDerived(Base):# Constructordef__init__(self,x,y):Base.x=xself.y=ydefprintXY(self):# print(self.x, self.y) will also workprint(Base.x,self.y)# Driver Coded=Derived(10,20)d.printXY()
Output:
(10, 20)
Using super()
We can also access parent class members using super.
Python
# Python example to show that base# class members can be accessed in# derived class using super()classBase(object):# Constructordef__init__(self,x):self.x=xclassDerived(Base):# Constructordef__init__(self,x,y):''' In Python 3.x, "super().__init__(name)" also works'''super(Derived,self).__init__(x)self.y=ydefprintXY(self):# Note that Base.x won't work here# because super() is used in constructorprint(self.x,self.y)# Driver Coded=Derived(10,20)d.printXY()
Output:
(10, 20)
Note that the above two methods are not exactly the same. In the next article on inheritance, we will covering following topics.
1) How super works? How accessing a member through super and parent class name are different?
2) How Diamond problem is handled in Python?
Exercise:
Predict the output of following Python programs
# Base or Super classclassPerson(object):def__init__(self,name):self.name=namedefgetName(self):returnself.namedefisEmployee(self):returnFalse# Inherited or Subclass (Note Person in bracket)classEmployee(Person):def__init__(self,name,eid):''' In Python 3.0+, "super().__init__(name)" also works'''super(Employee,self).__init__(name)self.empID=eiddefisEmployee(self):returnTruedefgetID(self):returnself.empID# Driver codeemp=Employee("Geek1","E101")print(emp.getName(),emp.isEmployee(),emp.getID())