overloading in python?

Publié le: 11 septembre 2024
sur la chaîne: Rahul Gaikwad
12
0

💥Overloading
We can use the same operator or methods for different purposes.

There are 3 types of Overloading
1. Operator Overloading
2. Method Overloading
3. Constructor Overloading



💥Operator Overloading:

We can use the same operator for multiple purposes, which is nothing but operator
overloading.
Python supports operator overloading.

Example:
💥+ operator can be used for Arithmetic addition and String concatenation
print(10+40) # 50
print('Rahul'+'Patil') #RahulPatil

💥* operator can be used for multiplication and string repetition purposes.
print(10*2) #20
print('rahul'*3) # rahulrahulrahul

💥Method Overloading:
If two methods having same name but different type of arguments then those methods
are said to be overloaded methods.


But in Python Method overloading is not possible.
If we are trying to declare multiple methods with same name and different number of
arguments then Python will always consider only the last method.

🔥How we can handle Overloaded Method Requirements in Python:
Most of the times, if method with variable number of arguments required then we can
handle with default arguments or with a variable number of argument methods.

💥Constructor Overloading:
Constructor overloading is not possible in Python.
If we define multiple constructors then the last constructor will be considered.

#python3
#coding #objectorientedprogramming #oopsconcept #programmingconcepts


Sur cette page du site, vous pouvez voir la vidéo en ligne overloading in python? durée heure minute seconde en bonne qualité , qui a été Téléchargé par l'utilisateur Rahul Gaikwad 11 septembre 2024, Partagez le lien avec vos amis et connaissances, sur youtube cette vidéo a déjà été regardée 12 fois et il a aimé 0 téléspectateurs. Bon visionnage!