Method Overloading:
Method Overloading is an example of Compile time polymorphism. In this, more than one method of the same class shares the same method name having different signatures. Method overloading is used to add more to the behavior of methods and there is no need of more than one class for method overloading.
Note: Python does not support method overloading. We may overload the methods but can only use the latest defined method.
Example:
Python3
def add(datatype, * args):
if datatype = = 'int' :
answer = 0
if datatype = = 'str' :
answer = ''
for x in args:
answer = answer + x
print (answer)
add( 'int' , 5 , 6 )
add( 'str' , 'Hi ' , 'Geeks' )
|
Output:
11
Hi Geeks
Method Overriding:
Method overriding is an example of run time polymorphism. In this, the specific implementation of the method that is already provided by the parent class is provided by the child class. It is used to change the behavior of existing methods and there is a need for at least two classes for method overriding. In method overriding, inheritance always required as it is done between parent class(superclass) and child class(child class) methods.
Example of Method Overriding in python:
Python3
class A:
def fun1( self ):
print ( 'feature_1 of class A' )
def fun2( self ):
print ( 'feature_2 of class A' )
class B(A):
def fun1( self ):
print ( 'Modified feature_1 of class A by class B' )
def fun3( self ):
print ( 'feature_3 of class B' )
obj = B()
obj.fun1()
|
Output:
Modified feature_1 of class A by class B
Difference between Method Overloading and Method Overriding in Python:
S.NO |
Method Overloading |
Method Overriding |
1. |
In the method overloading, methods or functions must have the same name and different signatures. |
Whereas in the method overriding, methods or functions must have the same name and same signatures. |
2. |
Method overloading is a example of compile time polymorphism. |
Whereas method overriding is a example of run time polymorphism. |
3. |
In the method overloading, inheritance may or may not be required. |
Whereas in method overriding, inheritance always required. |
4. |
Method overloading is performed between methods within the class. |
Whereas method overriding is done between parent class and child class methods. |
5. |
It is used in order to add more to the behavior of methods. |
Whereas it is used in order to change the behavior of exist methods. |
6. |
In method overloading, there is no need of more than one class. |
Whereas in method overriding, there is need of at least of two classes. |
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
29 Apr, 2021
Like Article
Save Article