overloading in python?

Publicado el: 11 septiembre 2024
en el canal de: 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


En esta página del sitio puede ver el video en línea overloading in python? de Duración hora minuto segunda en buena calidad , que subió el usuario Rahul Gaikwad 11 septiembre 2024, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 12 veces y le gustó 0 a los espectadores. Disfruta viendo!