Program 13 – Father Son Polymorphism

Consider the following class definition:

class father{

protected: int age;

public:

father(int x){age=x;}

virtual void iam()

{cout<<”I am the father, my age is:”<<age<<endl;}

};Derive the two classes son and daughter from the above class and for each, define suitable constructors for these classes.

Now, write a main() that creates objects of the three classes and then call iam() for them. Declare pointer to father. Successively, assign addresses of objects of the two derived classes to this pointer and in each case, call iam() through the pointer to demonstrate polymorphism in action

#include <iostream>
using namespace std;
class father
{
protected:
    int age;
public:
     father(int a)
     {
        age=a;
     }
    virtual void whoisme()
     {
     cout<<"\nI am father.My age is:"<<age;
     }
};

class son:public father
{
private:
     int ages;
public:
     son(int y,int x):father(x)
     {
     ages=y;
     }
     void whoisme()
     {
     cout<<endl<<"I am son.My age is: "<<ages;
     }
};
class daughter:public father
{
private:
     int aged;
public:
     daughter(int c,int l):father(l)
     {
     aged=c;
     }
     void whoisme()
     {
     cout<<endl<<"I am daughter.My age is: "<<aged;
     }
};
int main()
{
father f(55);
son s(2,24);
daughter d(1,25);
f.whoisme();
s.whoisme();
d.whoisme();
father *p;
p=&s;
p->whoisme();
p=&d;
p->whoisme();
return 0;
}

LEAVE A REPLY