18.2. Inheritance and Polymorphism: Polymorphism

Página 60

Polymorphism is one of the main concepts of object-oriented programming. It is an extension of the concept of inheritance and is fundamental to flexibility and code reuse in a program. The term polymorphism comes from the Greek and means "many forms". In programming, it refers to the ability of an object to take many different forms.

In practice, polymorphism allows a class to inherit methods and attributes from another class, but change them according to its specific needs. This means that an object of a child class can be treated like an object of its parent class, but still maintains its own identity and behavior.

To better understand polymorphism, it is helpful to consider an example. Suppose we have a parent class called "Animal" which has a method called "talk". This class can have several child classes, such as "Dog", "Cat" and "Bird", each of which can have its own "speak" method.

In the "Animal" class, the "speak" method may do nothing, or it may print a generic message such as "The animal makes a sound". However, in the "Dog" class, the "talk" method can be overridden to print "The dog barks", in the "Cat" class to print "The cat meows", and in the "Bird" class to print "The bird sings". .

This is polymorphism in action. Even though all these objects are treated like animals, each of them speaks in a different way. This allows the code to be more flexible and reusable as we don't have to write specific code for each type of animal. Instead, we can write generic code that works with any type of animal.

Polymorphism can also be used with interfaces, which are similar to classes but do not contain method implementations, just their signatures. A class can implement many interfaces and therefore take many different forms. This is especially useful when we want a class to have a specific behavior that cannot be inherited from its parent class.

For example, we might have an interface called "Swimmer" that has a method called "swim". A "Person" class can implement this interface, which means that a person can swim. However, a "Rock" class cannot implement this interface, as a rock cannot swim. So even though both "Person" and "Rock" can be treated as generic objects, only "Person" can swim.

In summary, polymorphism is a powerful concept that allows objects to take many different forms and behave differently depending on their class or interface. It is fundamental to object-oriented programming and is essential for creating flexible, reusable programs.

To master polymorphism, it is important to understand inheritance and interfaces well, and to practice creating classes and interfaces that use polymorphism. With time and practice, polymorphism will become a valuable tool in your programming arsenal.

Now answer the exercise about the content:

What is polymorphism in object-oriented programming?

You are right! Congratulations, now go to the next page

You missed! Try again.

Next page of the Free Ebook:

6119. Encapsulation

Earn your Certificate for this Course for Free! by downloading the Cursa app and reading the ebook there. Available on Google Play or App Store!

Get it on Google Play Get it on App Store

+ 6.5 million
students

Free and Valid
Certificate with QR Code

48 thousand free
exercises

4.8/5 rating in
app stores

Free courses in
video, audio and text