Ouery

N

NUPUL

What is polymorphism?

Maybe you could search for this question as is on google and am quite
sure you'll get the answer!

Polymorphism literally means: taking many forms

consider this example: (a rough outline, ignore specifics of C++)

Class Account is the parent of Class SavingsAccount and Class
CurrentAccount:

You can do this:

Account acc1=new SavingsAccount(); }...(X)
Account acc2=new CurrentAccount(); }

you have basically "upcasted" the objects of SavingsAccount and
CurrentAccount to that of type Account. When you call a function say
acc1.updateSavingsBalance(); which is in the class SavingsAccount,
you'll need to downcast to the appropriate subclass.

(SavingsAccount)acc1.updateSavingsBalance();

You may wonder why do I want to do such a thing as in (X)...lets say
you have a function adds interest to an account irrespective of the
account type:

addInterest(Account account)
{
//add interest
}

you just need to pass the base class reference and use polymorphism as
described above to add interest to the subclass. It's better
programming practice rather than creating an overloaded function for
each of the subclasses!!

Reading any text on C++ (or any OOP language for that matter) will
help you understand polymorphism.

Regards,

Nupul
 
P

peter koch

consider this example: (a rough outline, ignore specifics of C++)
We sure will. Especially since your code looks suspiciously like Java.
Class Account is the parent of Class SavingsAccount and Class
CurrentAccount:

You can do this:

Account acc1=new SavingsAccount(); }...(X)
Account acc2=new CurrentAccount(); }

/Peter
 
I

i

Maybe you could search for this question as is on google and am quite
sure you'll get the answer!

Polymorphism literally means: taking many forms

consider this example: (a rough outline, ignore specifics of C++)

Class Account is the parent of Class SavingsAccount and Class
CurrentAccount:

You can do this:

Account acc1=new SavingsAccount(); }...(X)
Account acc2=new CurrentAccount(); }

you have basically "upcasted" the objects of SavingsAccount and
CurrentAccount to that of type Account. When you call a function say
acc1.updateSavingsBalance(); which is in the class SavingsAccount,
you'll need to downcast to the appropriate subclass.

(SavingsAccount)acc1.updateSavingsBalance();

You may wonder why do I want to do such a thing as in (X)...lets say
you have a function adds interest to an account irrespective of the
account type:

addInterest(Account account)
{
//add interest

}

you just need to pass the base class reference and use polymorphism as
described above to add interest to the subclass. It's better
programming practice rather than creating an overloaded function for
each of the subclasses!!

Reading any text on C++ (or any OOP language for that matter) will
help you understand polymorphism.

Regards,

Nupul

Can we create child class for the parent class? in c++. It is
possible only in Java, isn't it? Could you explain polymorphism
with a simple example please?
 
M

Manish

Can we create child class for the parent class? in c++. It is
possible only in Java, isn't it? Could you explain polymorphism
with a simple example please?- Hide quoted text -

- Show quoted text -

Dear 'i',

Please, atleast make an attempt to search for answers, before asking
for help.
I am sure if you google your questions, you will find what you are
looking for.

Regards,
Manish
 
J

John Harrison

Can we create child class for the parent class? in c++. It is
possible only in Java, isn't it? Could you explain polymorphism
with a simple example please?

Gosh, how long have you been learning C++, and where from?

Of course it is possible in C++, in fact C++ has more possibilities than
Java because it has better support for multiple inheritance.

john
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Members online

Forum statistics

Threads
474,431
Messages
2,571,677
Members
48,796
Latest member
Greg L.

Latest Threads

Top