Python: Call Parent class method
A class is a user-defined blueprint or prototype from which objects are created. Classes provide a means of bundling data and functionality together. Creating a new class creates a new type of object, allowing new instances of that type to be made.
Example:
# Python program to demonstrate# classes class cls: # Constructor def __init__(self, fname, mname, lname): self.firstname = fname self.middlename = mname self.lastname = lname # class Function def print(self): print(self.firstname, self.middlename, self.lastname) # Use the Parent class to create an object# and then execute the print method:x = cls("Geeks", "for", "Geeks")x.print() |
Output:
Geeks for Geeks
Calling Parent class Method
To understand about the concept of parent class, you have to know about Inheritance in Python. In simpler terms, inheritance is the concept by which one class (commonly known as child class or sub class) inherits the properties from another class (commonly known as Parent class or super class).
But have you ever wondered about calling the functions defined inside the parent class with the help of child class? Well this can done using Python. You just have to create an object of the child class and call the function of the parent class using dot(.) operator.
Example:
# Python code to demonstrate # parent call method class Parent: # create a parent class method def show(self): print("Inside Parent class") # create a child classclass Child(Parent): # Create a child class method def display(self): print("Inside Child class") # Driver's codeobj = Child()obj.display() # Calling Parent classobj.show() |
Output
Inside Child class Inside Parent class
Calling Parent class method after method overriding
Method overriding is an ability of any object-oriented programming language that allows a subclass or child class to provide a specific implementation of a method that is already provided by one of its super-classes or parent classes.
Parent class methods can also be called within the overridden methods. This can generally be achieved by two ways.
- Using Classname: Parent’s class methods can be called by using the Parent
classname.methodinside the overridden method.Example:
# Python program to demonstrate# calling the parent's class method# inside the overridden methodclassParent():defshow(self):print("Inside Parent")classChild(Parent):defshow(self):# Calling the parent's class# methodParent.show(self)print("Inside Child")# Driver's codeobj=Child()obj.show()Output:
Inside Parent Inside Child
- Using Super(): Python
super()function provides us the facility to refer to the parent class explicitly. It is basically useful where we have to call superclass functions. It returns the proxy object that allows us to refer parent class by ‘super’.Example 1:
# Python program to demonstrate# calling the parent's class method# inside the overridden method using# super()classParent():defshow(self):print("Inside Parent")classChild(Parent):defshow(self):# Calling the parent's class# methodsuper().show()print("Inside Child")# Driver's codeobj=Child()obj.show()Output:
Inside Parent Inside Child
Example 2:
# Program to define the use of super()# function in multiple inheritanceclassGFG1:def__init__(self):print('HEY !!!!!! GfG I am initialised(Class GEG1)')defsub_GFG(self, b):print('Printing from class GFG1:', b)# class GFG2 inherits the GFG1classGFG2(GFG1):def__init__(self):print('HEY !!!!!! GfG I am initialised(Class GEG2)')super().__init__()defsub_GFG(self, b):print('Printing from class GFG2:', b)super().sub_GFG(b+1)# class GFG3 inherits the GFG1 ang GFG2 bothclassGFG3(GFG2):def__init__(self):print('HEY !!!!!! GfG I am initialised(Class GEG3)')super().__init__()defsub_GFG(self, b):print('Printing from class GFG3:', b)super().sub_GFG(b+1)# main functionif__name__=='__main__':# created the object gfggfg=GFG3()# calling the function sub_GFG3() from class GHG3# which inherits both GFG1 and GFG2 classesgfg.sub_GFG(10)Output:
HEY !!!!!! GfG I am initialised(Class GEG3) HEY !!!!!! GfG I am initialised(Class GEG2) HEY !!!!!! GfG I am initialised(Class GEG1) Printing from class GFG3: 10 Printing from class GFG2: 11 Printing from class GFG1: 12
Please Login to comment...