What is Polymorphism in C++ Programming?

Asked By 20 points N/A Posted on -
qa-featured

I need someone who is good at object-oriented programming (OOP) to help me understand the concept of polymorphism as used in C++ programming. Why do I need to understand this concept? How do I develop this understanding and what are some of the benefits of knowing how to use this concept in developing codes?

SHARE
Answered By 0 points N/A #189116

What is Polymorphism in C++ Programming?

qa-featured
The simple phrase that explains polymorphism is "one interface,multiple methods"
Polymorphism helps reduce complexity by allowing the same interface to be used
to  access a general class of actions. It is the compiler's job to select the specific action
(i.e., method) as it applies to each situation. You, the programmer, don't need to do
this selection manually. You need only remember and utilize the general interface.
HIERARCHICAL-CLASSIFICATION-OF-POLYMORPHISM

Related Questions